diff options
author | Aleksandar Sasha Babic <aleksandar.babic@nokia.com> | 2009-08-20 07:08:31 (GMT) |
---|---|---|
committer | Aleksandar Sasha Babic <aleksandar.babic@nokia.com> | 2009-08-20 07:08:31 (GMT) |
commit | 5ce1ce19cc34c389ac4705d85582ee1c57519175 (patch) | |
tree | 5ee13ef2e3956d15644af5adc5ca8bb3dd95af86 | |
parent | dbdeae0da8702379c1dabb11bfe8440438c1fd98 (diff) | |
download | Qt-5ce1ce19cc34c389ac4705d85582ee1c57519175.zip Qt-5ce1ce19cc34c389ac4705d85582ee1c57519175.tar.gz Qt-5ce1ce19cc34c389ac4705d85582ee1c57519175.tar.bz2 |
No need to use more time in QTimer::singleShot()
than on other platforms.
-rw-r--r-- | tests/auto/qhttp/tst_qhttp.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/auto/qhttp/tst_qhttp.cpp b/tests/auto/qhttp/tst_qhttp.cpp index b0835ac..fcc80ab 100644 --- a/tests/auto/qhttp/tst_qhttp.cpp +++ b/tests/auto/qhttp/tst_qhttp.cpp @@ -1242,11 +1242,7 @@ void tst_QHttp::unexpectedRemoteClose() QCoreApplication::instance()->processEvents(); QEventLoop loop; -#ifndef Q_OS_SYMBIAN QTimer::singleShot(3000, &loop, SLOT(quit())); -#else - QTimer::singleShot(30000, &loop, SLOT(quit())); -#endif QHttp http; QObject::connect(&http, SIGNAL(done(bool)), &loop, SLOT(quit())); |