diff options
author | Janne Anttila <janne.anttila@digia.com> | 2012-02-24 11:24:27 (GMT) |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-02-26 22:52:16 (GMT) |
commit | 203a8d8333c8be8412289537efd490b8da0425b2 (patch) | |
tree | 676d8a0952772f2280f7eb1a1a9d2137beef80ed | |
parent | 708bbde16d74a1d4f51242002ac82999d0045f97 (diff) | |
download | Qt-203a8d8333c8be8412289537efd490b8da0425b2.zip Qt-203a8d8333c8be8412289537efd490b8da0425b2.tar.gz Qt-203a8d8333c8be8412289537efd490b8da0425b2.tar.bz2 |
Build fix to raster window surface.
Fixed typo in qwindowsurface_raster.cpp, to get rid of compile error:
'class QRasterWindowSurfacePrivate' has no member named 'needsSync'
Mispelling was introduces by commit: 30dee4f4
Task-number: QTBUG-23320
Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
Change-Id: If473289e0549b2dec440285fec1ce64030de035f
Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
-rw-r--r-- | src/gui/painting/qwindowsurface_raster.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/painting/qwindowsurface_raster.cpp b/src/gui/painting/qwindowsurface_raster.cpp index ba48e7d..f01f001 100644 --- a/src/gui/painting/qwindowsurface_raster.cpp +++ b/src/gui/painting/qwindowsurface_raster.cpp @@ -97,7 +97,7 @@ QRasterWindowSurface::QRasterWindowSurface(QWidget *window, bool setDefaultSurfa d_ptr->translucentBackground = X11->use_xrender && window->x11Info().depth() == 32; #endif -#ifndef QT_NO_MITHSM +#ifndef QT_NO_MITSHM d_ptr->needsSync = false; #endif #endif |