diff options
author | Janne Anttila <janne.anttila@digia.com> | 2009-08-14 06:47:41 (GMT) |
---|---|---|
committer | Janne Anttila <janne.anttila@digia.com> | 2009-08-14 06:47:41 (GMT) |
commit | 7d68b34a1f261b2b23400fddcf46d6521eae32d1 (patch) | |
tree | d5d4fd32104ccfbca2da7162cc1e69eb39a67f48 /tests/auto/languagechange | |
parent | 01ecc29ad3f737fb8e1cc3a33dfa4687cd74c1a5 (diff) | |
download | Qt-7d68b34a1f261b2b23400fddcf46d6521eae32d1.zip Qt-7d68b34a1f261b2b23400fddcf46d6521eae32d1.tar.gz Qt-7d68b34a1f261b2b23400fddcf46d6521eae32d1.tar.bz2 |
Fixed and re-enabled anguagechange autotest for Symbian.
Started to use QApplication::closeAllWindows instead of unexported
QThreadData::current() and friends.
Diffstat (limited to 'tests/auto/languagechange')
-rw-r--r-- | tests/auto/languagechange/tst_languagechange.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/auto/languagechange/tst_languagechange.cpp b/tests/auto/languagechange/tst_languagechange.cpp index 7cca3bf..7c98809 100644 --- a/tests/auto/languagechange/tst_languagechange.cpp +++ b/tests/auto/languagechange/tst_languagechange.cpp @@ -122,10 +122,7 @@ public slots: void install() { QCoreApplication::installTranslator(this); QTest::qWait(2500); - //### is there any better way to close a Qt dialog? - QThreadData *data = QThreadData::current(); - if (!data->eventLoops.isEmpty()) - data->eventLoops.top()->quit(); + QApplication::closeAllWindows(); } public: mutable QSet<QByteArray> m_translations; |