summaryrefslogtreecommitdiffstats
path: root/src/gui/image/qimage.cpp
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.p.agocs@nokia.com>2011-06-16 11:22:51 +0200
committerLaszlo Agocs <laszlo.p.agocs@nokia.com>2011-06-16 11:37:01 +0200
commit980bceb279e0948ad33ccecd6e1601e428d01866 (patch)
treeaf359957d4dc97792f958471a1e6dbb4c5a53099 /src/gui/image/qimage.cpp
parent8d1ba7ebfb59d68dfdb4d7094c34208eeab4eae0 (diff)
Proper naming for raster pixmap and paintengine on Symbian.
As QTBUG-19880 highlighted, the old S60 naming is not suitable for these classes anymore. Task-number: QTBUG-19913 Reviewed-by: Jani Hautakangas
Diffstat (limited to 'src/gui/image/qimage.cpp')
-rw-r--r--src/gui/image/qimage.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/image/qimage.cpp b/src/gui/image/qimage.cpp
index d7156a7970..5c83cf6acb 100644
--- a/src/gui/image/qimage.cpp
+++ b/src/gui/image/qimage.cpp
@@ -63,7 +63,7 @@
#include <qhash.h>
#if defined(Q_OS_SYMBIAN)
-#include <private/qpaintengine_s60_p.h>
+#include <private/qpaintengine_raster_symbian_p.h>
#else
#include <private/qpaintengine_raster_p.h>
#endif
@@ -5711,7 +5711,7 @@ QPaintEngine *QImage::paintEngine() const
if (!d->paintEngine) {
#ifdef Q_OS_SYMBIAN
- d->paintEngine = new QS60PaintEngine(const_cast<QImage *>(this));
+ d->paintEngine = new QSymbianRasterPaintEngine(const_cast<QImage *>(this));
#else
d->paintEngine = new QRasterPaintEngine(const_cast<QImage *>(this));
#endif