diff options
author | Paul Olav Tvete <paul.tvete@nokia.com> | 2009-10-14 07:29:57 (GMT) |
---|---|---|
committer | Paul Olav Tvete <paul.tvete@nokia.com> | 2009-10-14 09:40:07 (GMT) |
commit | 9a5fce0d7d66e0635678eb129f765b39ea11e600 (patch) | |
tree | c66a1a97767bd9ff7ab151b68c64e95a9321764b /tests/auto/qaction | |
parent | ba321e277e392c276c1ff8b32f8fca7d26ed0fbe (diff) | |
download | Qt-9a5fce0d7d66e0635678eb129f765b39ea11e600.zip Qt-9a5fce0d7d66e0635678eb129f765b39ea11e600.tar.gz Qt-9a5fce0d7d66e0635678eb129f765b39ea11e600.tar.bz2 |
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.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qaction/tst_qaction.cpp b/tests/auto/qaction/tst_qaction.cpp index 4aad8ca..1e3b143 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"); |