diff options
author | ninerider <qt-info@nokia.com> | 2009-11-13 13:32:24 (GMT) |
---|---|---|
committer | ninerider <qt-info@nokia.com> | 2009-11-13 13:32:24 (GMT) |
commit | 0c6255485dd2c59bfbb307583f2efe4dec8605cf (patch) | |
tree | 8b4fa54ddd2833b434e35c009ec250befac80d44 /tests/auto/qcombobox | |
parent | 5c7388f16f50cc867180d19c44549a2da2760696 (diff) | |
download | Qt-0c6255485dd2c59bfbb307583f2efe4dec8605cf.zip Qt-0c6255485dd2c59bfbb307583f2efe4dec8605cf.tar.gz Qt-0c6255485dd2c59bfbb307583f2efe4dec8605cf.tar.bz2 |
Cursor motion related tests disabled for windows ce.
When calling cursor function, Windows CE responds with:
This function is not supported on this system.
Reviewed-by: Joerg
Diffstat (limited to 'tests/auto/qcombobox')
-rw-r--r-- | tests/auto/qcombobox/tst_qcombobox.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/qcombobox/tst_qcombobox.cpp b/tests/auto/qcombobox/tst_qcombobox.cpp index cc59b62..e903ab5 100644 --- a/tests/auto/qcombobox/tst_qcombobox.cpp +++ b/tests/auto/qcombobox/tst_qcombobox.cpp @@ -2479,6 +2479,10 @@ void tst_QComboBox::keyBoardNavigationWithMouse() QCOMPARE(combo.currentText(), QLatin1String("0")); +#ifdef Q_OS_WINCE + QSKIP("When calling cursor function, Windows CE responds with: This function is not supported on this system.", SkipAll); +#endif + QCursor::setPos(combo.view()->mapToGlobal(combo.view()->rect().center())); QTest::qWait(200); |