summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQt Continuous Integration System <qt-info@nokia.com>2009-12-17 21:12:14 (GMT)
committerQt Continuous Integration System <qt-info@nokia.com>2009-12-17 21:12:14 (GMT)
commitbf819a04b0c60c64912f72b613c1546d8be7dc50 (patch)
tree5e8dd0f5b3abacaeabed892f72789f1c8cb6d808
parentb8a4b365b1105a742369bbaa5dc00e43914089e0 (diff)
parent05d1efb5322651cbe227c9fd6ac200cfff423a91 (diff)
downloadQt-bf819a04b0c60c64912f72b613c1546d8be7dc50.zip
Qt-bf819a04b0c60c64912f72b613c1546d8be7dc50.tar.gz
Qt-bf819a04b0c60c64912f72b613c1546d8be7dc50.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: WeatherInfo now shows Oslo info upon launch instead of blank screen Fixed QCoeFepInputContext::widgetDestroyed
-rw-r--r--demos/embedded/weatherinfo/weatherinfo.cpp3
-rw-r--r--src/gui/inputmethod/qcoefepinputcontext_s60.cpp3
2 files changed, 2 insertions, 4 deletions
diff --git a/demos/embedded/weatherinfo/weatherinfo.cpp b/demos/embedded/weatherinfo/weatherinfo.cpp
index 842f05b..3b78a5f 100644
--- a/demos/embedded/weatherinfo/weatherinfo.cpp
+++ b/demos/embedded/weatherinfo/weatherinfo.cpp
@@ -105,9 +105,8 @@ private slots:
void delayedInit() {
#if defined(Q_OS_SYMBIAN)
qt_SetDefaultIap();
-#else
- request("Oslo");
#endif
+ request("Oslo");
}
private slots:
diff --git a/src/gui/inputmethod/qcoefepinputcontext_s60.cpp b/src/gui/inputmethod/qcoefepinputcontext_s60.cpp
index a295d66..1bf7662 100644
--- a/src/gui/inputmethod/qcoefepinputcontext_s60.cpp
+++ b/src/gui/inputmethod/qcoefepinputcontext_s60.cpp
@@ -139,8 +139,7 @@ void QCoeFepInputContext::widgetDestroyed(QWidget *w)
// Make sure that the input capabilities of whatever new widget got focused are queried.
CCoeControl *ctrl = w->effectiveWinId();
if (ctrl->IsFocused()) {
- ctrl->SetFocus(false);
- ctrl->SetFocus(true);
+ queueInputCapabilitiesChanged();
}
}