diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2010-09-30 14:32:58 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2010-09-30 14:32:58 (GMT) |
commit | 74d391adfd907d80ae35abe25fe346b2b4d649f9 (patch) | |
tree | 9f7738ca66f06d010085453900b265b16c7427fa /src/gui/kernel | |
parent | 19a57f4e192267523fb815246b347bbc2054b736 (diff) | |
parent | 6d5309c2fbdbf15948b430de103f393c5af5b7cd (diff) | |
download | Qt-74d391adfd907d80ae35abe25fe346b2b4d649f9.zip Qt-74d391adfd907d80ae35abe25fe346b2b4d649f9.tar.gz Qt-74d391adfd907d80ae35abe25fe346b2b4d649f9.tar.bz2 |
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-s60-public into 4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/qt-s60-public:
Added support for unsigned smart installer package creation in Symbian
Fix QApplication::desktop()->availableGeometry() for Symbian
QS60Style: Possible NULL pointer use when drawing frame
Diffstat (limited to 'src/gui/kernel')
-rw-r--r-- | src/gui/kernel/qapplication_s60.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/kernel/qapplication_s60.cpp b/src/gui/kernel/qapplication_s60.cpp index 2be3ed3..1127c84 100644 --- a/src/gui/kernel/qapplication_s60.cpp +++ b/src/gui/kernel/qapplication_s60.cpp @@ -673,6 +673,9 @@ void QSymbianControl::HandleStatusPaneSizeChange() { QS60MainAppUi *s60AppUi = static_cast<QS60MainAppUi *>(S60->appUi()); s60AppUi->HandleStatusPaneSizeChange(); + // Send resize event to trigger desktopwidget workAreaResized signal + QResizeEvent e(qt_desktopWidget->size(), qt_desktopWidget->size()); + QApplication::sendEvent(qt_desktopWidget, &e); } #endif |