summaryrefslogtreecommitdiffstats
path: root/tests/auto/qaction
diff options
context:
space:
mode:
authorJanne Anttila <janne.anttila@digia.com>2009-08-13 14:41:25 +0300
committerJanne Anttila <janne.anttila@digia.com>2009-08-13 14:41:25 +0300
commitd66b8241d1aba1b50f9ecd30d069a7c077d06d13 (patch)
treee03fd399c50bae0587b86256dffbe11786bfb5a0 /tests/auto/qaction
parent9515f42d23b27efc113d3a1b57362e6cf56e0552 (diff)
Fixed qaction autotest failures for Symbian.
Diffstat (limited to 'tests/auto/qaction')
-rw-r--r--tests/auto/qaction/tst_qaction.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qaction/tst_qaction.cpp b/tests/auto/qaction/tst_qaction.cpp
index 1835e14701..f8d7acfaad 100644
--- a/tests/auto/qaction/tst_qaction.cpp
+++ b/tests/auto/qaction/tst_qaction.cpp
@@ -240,9 +240,9 @@ void tst_QAction::setStandardKeys()
QVERIFY(act.shortcut() == act.shortcuts().first());
QList<QKeySequence> expected;
-#ifdef Q_WS_MAC
+#if defined(Q_WS_MAC) || defined(Q_OS_SYMBIAN)
expected << QKeySequence("CTRL+C");
-#elif defined(Q_WS_WIN) || defined(Q_WS_QWS) || defined(Q_OS_SYMBIAN)
+#elif defined(Q_WS_WIN) || defined(Q_WS_QWS)
expected << QKeySequence("CTRL+C") << QKeySequence("CTRL+INSERT");
#else
expected << QKeySequence("CTRL+C") << QKeySequence("F16") << QKeySequence("CTRL+INSERT");