diff options
author | axis <qt-info@nokia.com> | 2009-06-10 13:28:40 +0200 |
---|---|---|
committer | axis <qt-info@nokia.com> | 2009-06-10 15:07:22 +0200 |
commit | 959ff46310b8a27c82ef6b0c1d122b817270f8d9 (patch) | |
tree | 581ee42f4dddb30d9936b55683ebfa2cab75d6be /src/gui/inputmethod | |
parent | c24d4cb9eca0b06f411bc99be3d232ff1ee27516 (diff) | |
download | qt4-tools-959ff46310b8a27c82ef6b0c1d122b817270f8d9.tar.gz |
Revert "Fix to qapplication::setActiveWindow autotest case in Symbian."
This reverts commit ba105741867dd96a9d58dcfcb78afef60e611bd6.
Diffstat (limited to 'src/gui/inputmethod')
-rw-r--r-- | src/gui/inputmethod/qcoefepinputcontext_s60.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/gui/inputmethod/qcoefepinputcontext_s60.cpp b/src/gui/inputmethod/qcoefepinputcontext_s60.cpp index 1dfb0124c9..24abb58b5e 100644 --- a/src/gui/inputmethod/qcoefepinputcontext_s60.cpp +++ b/src/gui/inputmethod/qcoefepinputcontext_s60.cpp @@ -43,7 +43,6 @@ #include "qcoefepinputcontext_p.h" #include <qapplication.h> -#include <private/qapplication_p.h> #include <qtextformat.h> #include <fepitfr.h> @@ -90,12 +89,9 @@ QCoeFepInputContext::~QCoeFepInputContext() // This is to make sure that the FEP manager "forgets" about us, // otherwise we may get callbacks even after we're destroyed. // The call is asynchronous though, so we must spin the event loop - // to make sure it gets detected. However we will not spin eventloop - // in case that app is closing, since eventDispatcher is already deleted. + // to make sure it gets detected. CCoeEnv::Static()->InputCapabilitiesChanged(); - if(!QApplicationPrivate::is_app_closing) { - QApplication::processEvents(); - } + QApplication::processEvents(); if (m_fepState) delete m_fepState; |