diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2010-05-27 15:50:04 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2010-05-27 15:50:04 (GMT) |
commit | 02f3facbc114fdc1e12cb0abf5be7b0cf42ce0a4 (patch) | |
tree | c74ff9371071411777f1c1919701e98ef0ce2a9d | |
parent | 8f011df08139bea59c12ae0804969334a9374dc8 (diff) | |
parent | 693e94d0071f8d6dff48e608a0b11cbb2497f32e (diff) | |
download | Qt-02f3facbc114fdc1e12cb0abf5be7b0cf42ce0a4.zip Qt-02f3facbc114fdc1e12cb0abf5be7b0cf42ce0a4.tar.gz Qt-02f3facbc114fdc1e12cb0abf5be7b0cf42ce0a4.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:
Post QResizeEvent from QSymbianControl::SizeChanged even when invisible
Moved Symbian-specific .pro directive into symbian{} block
-rw-r--r-- | demos/spectrum/spectrum.pro | 3 | ||||
-rw-r--r-- | src/gui/kernel/qapplication_s60.cpp | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/demos/spectrum/spectrum.pro b/demos/spectrum/spectrum.pro index 8736ba7..a8f09de 100644 --- a/demos/spectrum/spectrum.pro +++ b/demos/spectrum/spectrum.pro @@ -1,4 +1,3 @@ -load(data_caging_paths) include(spectrum.pri) TEMPLATE = subdirs @@ -15,6 +14,8 @@ SUBDIRS += app TARGET = spectrum symbian { + load(data_caging_paths) + # Create a 'make sis' rule which can be run from the top-level include($$QT_SOURCE_TREE/demos/symbianpkgrules.pri) diff --git a/src/gui/kernel/qapplication_s60.cpp b/src/gui/kernel/qapplication_s60.cpp index 6e6a806..b1e0f63 100644 --- a/src/gui/kernel/qapplication_s60.cpp +++ b/src/gui/kernel/qapplication_s60.cpp @@ -934,6 +934,9 @@ void QSymbianControl::SizeChanged() qwidget->d_func()->syncBackingStore(); if (!slowResize && tlwExtra) tlwExtra->inTopLevelResize = false; + } else { + QResizeEvent *e = new QResizeEvent(newSize, oldSize); + QApplication::postEvent(qwidget, e); } } |