summaryrefslogtreecommitdiffstats
path: root/src/gui
diff options
context:
space:
mode:
authorQt Continuous Integration System <qt-info@nokia.com>2010-03-29 15:52:31 (GMT)
committerQt Continuous Integration System <qt-info@nokia.com>2010-03-29 15:52:31 (GMT)
commit82c6507e63655a84d490d7b83e964d77c5d8a6df (patch)
tree853d16d0c0324587cf18e38dafc51da15f71b1d5 /src/gui
parent4b79b6a982d51b068a533ea56682aaffcf958c74 (diff)
parent0c5524e73848b95276f13c384d2c711188936deb (diff)
downloadQt-82c6507e63655a84d490d7b83e964d77c5d8a6df.zip
Qt-82c6507e63655a84d490d7b83e964d77c5d8a6df.tar.gz
Qt-82c6507e63655a84d490d7b83e964d77c5d8a6df.tar.bz2
Merge branch '4.6' of scm.dev.nokia.troll.no:qt/qt-s60-public into 4.6-integration
* '4.6' of scm.dev.nokia.troll.no:qt/qt-s60-public: Fixed crash in Phonon MMF backend during application shutdown Fixed bitfield-related crash on Symbian WINSCW
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/kernel/qwidget_p.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/gui/kernel/qwidget_p.h b/src/gui/kernel/qwidget_p.h
index 1bbc057..555647c 100644
--- a/src/gui/kernel/qwidget_p.h
+++ b/src/gui/kernel/qwidget_p.h
@@ -233,6 +233,15 @@ struct QWExtra {
uint activated : 1; // RWindowBase::Activated has been called
/**
+ * If this bit is set, each native widget receives the signals from the
+ * Symbian control immediately before and immediately after draw ops are
+ * sent to the window server for this control:
+ * void beginNativePaintEvent(const QRect &paintRect);
+ * void endNativePaintEvent(const QRect &paintRect);
+ */
+ uint receiveNativePaintEvents : 1;
+
+ /**
* Defines the behaviour of QSymbianControl::Draw.
*/
enum NativePaintMode {
@@ -257,16 +266,7 @@ struct QWExtra {
Default = Blit
};
- NativePaintMode nativePaintMode : 2;
-
- /**
- * If this bit is set, each native widget receives the signals from the
- * Symbian control immediately before and immediately after draw ops are
- * sent to the window server for this control:
- * void beginNativePaintEvent(const QRect &paintRect);
- * void endNativePaintEvent(const QRect &paintRect);
- */
- uint receiveNativePaintEvents : 1;
+ NativePaintMode nativePaintMode;
#endif
};