summaryrefslogtreecommitdiffstats
path: root/tests/auto/qaction
diff options
context:
space:
mode:
authorPaul Olav Tvete <paul.tvete@nokia.com>2009-10-14 09:29:57 +0200
committerPaul Olav Tvete <paul.tvete@nokia.com>2009-10-14 11:40:07 +0200
commit9a5fce0d7d66e0635678eb129f765b39ea11e600 (patch)
treec66a1a97767bd9ff7ab151b68c64e95a9321764b /tests/auto/qaction
parentba321e277e392c276c1ff8b32f8fca7d26ed0fbe (diff)
Fix some autotest failures and get rid of some compiler warnings
Diffstat (limited to 'tests/auto/qaction')
-rw-r--r--tests/auto/qaction/tst_qaction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qaction/tst_qaction.cpp b/tests/auto/qaction/tst_qaction.cpp
index 4aad8ca61c..1e3b143f79 100644
--- a/tests/auto/qaction/tst_qaction.cpp
+++ b/tests/auto/qaction/tst_qaction.cpp
@@ -242,7 +242,7 @@ void tst_QAction::setStandardKeys()
QList<QKeySequence> expected;
#if defined(Q_WS_MAC) || defined(Q_OS_SYMBIAN)
expected << QKeySequence("CTRL+C");
-#elif defined(Q_WS_WIN) || defined(Q_WS_QWS)
+#elif defined(Q_WS_WIN) || defined(Q_WS_QWS) || defined(Q_WS_LITE)
expected << QKeySequence("CTRL+C") << QKeySequence("CTRL+INSERT");
#else
expected << QKeySequence("CTRL+C") << QKeySequence("F16") << QKeySequence("CTRL+INSERT");