diff options
author | Rohan McGovern <rohan.mcgovern@nokia.com> | 2009-09-05 11:36:19 (GMT) |
---|---|---|
committer | Rohan McGovern <rohan.mcgovern@nokia.com> | 2009-09-05 11:37:37 (GMT) |
commit | a1fa077083d32f48751d08de80babe63b4f8df39 (patch) | |
tree | c9aad0a5f91c7c1850217ecdce47545748676ba4 /src/testlib | |
parent | b504a21a7d62b24ac5f16cb3f1a88479da1499d5 (diff) | |
download | Qt-a1fa077083d32f48751d08de80babe63b4f8df39.zip Qt-a1fa077083d32f48751d08de80babe63b4f8df39.tar.gz Qt-a1fa077083d32f48751d08de80babe63b4f8df39.tar.bz2 |
Fixed compile of code which defines QT_NO_CAST_FROM_ASCII and includes
qtestmouse.h.
Diffstat (limited to 'src/testlib')
-rw-r--r-- | src/testlib/qtestmouse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testlib/qtestmouse.h b/src/testlib/qtestmouse.h index 665b784..bfa5c25 100644 --- a/src/testlib/qtestmouse.h +++ b/src/testlib/qtestmouse.h @@ -115,7 +115,7 @@ namespace QTest } QSpontaneKeyEvent::setSpontaneous(&me); if (!qApp->notify(widget, &me)) { - QString warning("Mouse event \"%1\" not accepted by receiving widget"); + QString warning = QString::fromLatin1("Mouse event \"%1\" not accepted by receiving widget"); QTest::qWarn(warning.arg(mouseActionNames[static_cast<int>(action)]).toAscii().data()); } |