summaryrefslogtreecommitdiffstats
path: root/src/gui/painting/qwindowsurface_x11.cpp
diff options
context:
space:
mode:
authorHarald Fernengel <harald@trolltech.com>2009-08-21 08:02:12 (GMT)
committerHarald Fernengel <harald@trolltech.com>2009-08-21 08:03:23 (GMT)
commitdeff84b66642563fa93ec01c14934289945e2912 (patch)
treef6fe3d5b41819162bfe940c2543a7b26cfe00f99 /src/gui/painting/qwindowsurface_x11.cpp
parent168331a95fbd0fb222734abd166a29a916813f59 (diff)
downloadQt-deff84b66642563fa93ec01c14934289945e2912.zip
Qt-deff84b66642563fa93ec01c14934289945e2912.tar.gz
Qt-deff84b66642563fa93ec01c14934289945e2912.tar.bz2
compile again with QExplicitlySharedDataPointer
Diffstat (limited to 'src/gui/painting/qwindowsurface_x11.cpp')
-rw-r--r--src/gui/painting/qwindowsurface_x11.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/painting/qwindowsurface_x11.cpp b/src/gui/painting/qwindowsurface_x11.cpp
index 783d1c5..e878c5c 100644
--- a/src/gui/painting/qwindowsurface_x11.cpp
+++ b/src/gui/painting/qwindowsurface_x11.cpp
@@ -96,7 +96,7 @@ void QX11WindowSurface::beginPaint(const QRegion &rgn)
#ifndef QT_NO_XRENDER
if (d_ptr->translucentBackground) {
if (d_ptr->device.depth() != 32)
- static_cast<QX11PixmapData *>(d_ptr->device.data_ptr())->convertToARGB32();
+ static_cast<QX11PixmapData *>(d_ptr->device.data_ptr().data())->convertToARGB32();
::Picture src = X11->getSolidFill(d_ptr->device.x11Info().screen(), Qt::transparent);
::Picture dst = d_ptr->device.x11PictureHandle();
const QVector<QRect> rects = rgn.rects();