diff options
author | Kim Motoyoshi Kalland <kim.kalland@nokia.com> | 2010-02-03 12:27:43 (GMT) |
---|---|---|
committer | Kim Motoyoshi Kalland <kim.kalland@nokia.com> | 2010-02-04 14:26:43 (GMT) |
commit | 392123ef5432643d1047d1e1dd71512ec39d382d (patch) | |
tree | a41d4c5b6957a14c4b52f9eda063814100b45899 /src/gui/kernel/qwidget_p.h | |
parent | 10ca680e00fe514c32eb6364c4cca3ce46814076 (diff) | |
download | Qt-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_p.h')
-rw-r--r-- | src/gui/kernel/qwidget_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kernel/qwidget_p.h b/src/gui/kernel/qwidget_p.h index 2b09220..ee56bb2 100644 --- a/src/gui/kernel/qwidget_p.h +++ b/src/gui/kernel/qwidget_p.h @@ -537,6 +537,7 @@ public: uint inDirtyList : 1; uint isScrolled : 1; uint isMoved : 1; + uint isGLWidget : 1; uint usesDoubleBufferedGLContext : 1; #ifdef Q_WS_WIN @@ -593,7 +594,6 @@ public: // This is new stuff uint needWindowChange : 1; - uint isGLWidget : 1; #endif #if defined(Q_WS_X11) || defined (Q_WS_WIN) || defined(Q_WS_MAC) |