diff options
author | Maurice Kalinowski <maurice.kalinowski@nokia.com> | 2009-04-14 13:16:43 (GMT) |
---|---|---|
committer | Maurice Kalinowski <maurice.kalinowski@nokia.com> | 2009-04-14 13:16:43 (GMT) |
commit | 9a41b437be6014c7a671591e2741c5ca7d8c8be8 (patch) | |
tree | 9cc7b5a3d4c7876220da4d89e8d93c1e9e7d62e0 | |
parent | f0ceef57b178d4ed71e61a6ce2681f3d401d69fe (diff) | |
download | Qt-9a41b437be6014c7a671591e2741c5ca7d8c8be8.zip Qt-9a41b437be6014c7a671591e2741c5ca7d8c8be8.tar.gz Qt-9a41b437be6014c7a671591e2741c5ca7d8c8be8.tar.bz2 |
increase waiting time
slower platforms (like WinCE) need some more time to actually update.
-rw-r--r-- | tests/auto/qcolordialog/tst_qcolordialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qcolordialog/tst_qcolordialog.cpp b/tests/auto/qcolordialog/tst_qcolordialog.cpp index e51dfcc..1b5babb 100644 --- a/tests/auto/qcolordialog/tst_qcolordialog.cpp +++ b/tests/auto/qcolordialog/tst_qcolordialog.cpp @@ -108,7 +108,7 @@ void tst_QColorDialog::native_activeModalWidget() // color dialog when it is executing, even when using a native // dialog: TestNativeDialog d; - QTimer::singleShot(100, &d, SLOT(hide())); + QTimer::singleShot(1000, &d, SLOT(hide())); d.exec(); QVERIFY(&d == d.m_activeModalWidget); } |