summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qwidget.cpp
diff options
context:
space:
mode:
authorKim Motoyoshi Kalland <kim.kalland@nokia.com>2010-02-03 12:27:43 (GMT)
committerKim Motoyoshi Kalland <kim.kalland@nokia.com>2010-02-04 14:26:43 (GMT)
commit392123ef5432643d1047d1e1dd71512ec39d382d (patch)
treea41d4c5b6957a14c4b52f9eda063814100b45899 /src/gui/kernel/qwidget.cpp
parent10ca680e00fe514c32eb6364c4cca3ce46814076 (diff)
downloadQt-392123ef5432643d1047d1e1dd71512ec39d382d.zip
Qt-392123ef5432643d1047d1e1dd71512ec39d382d.tar.gz
Qt-392123ef5432643d1047d1e1dd71512ec39d382d.tar.bz2
Fixed bug where GL widget was not fully updated on Vista.
There were cases where the QGLWidget would not be fully updated on screen on Windows Vista and Windows 7 with Aero disabled. Task-number: QTBUG-7865 Reviewed-by: Prasanth
Diffstat (limited to 'src/gui/kernel/qwidget.cpp')
-rw-r--r--src/gui/kernel/qwidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kernel/qwidget.cpp b/src/gui/kernel/qwidget.cpp
index 91e43ce..e8ec3a5 100644
--- a/src/gui/kernel/qwidget.cpp
+++ b/src/gui/kernel/qwidget.cpp
@@ -183,6 +183,7 @@ QWidgetPrivate::QWidgetPrivate(int version) :
,inDirtyList(0)
,isScrolled(0)
,isMoved(0)
+ , isGLWidget(0)
,usesDoubleBufferedGLContext(0)
#ifdef Q_WS_WIN
,noPaintOnScreen(0)
@@ -194,7 +195,6 @@ QWidgetPrivate::QWidgetPrivate(int version) :
#endif
#ifdef Q_WS_MAC
,needWindowChange(0)
- ,isGLWidget(0)
#endif
,polished(0)