diff options
author | Orgad Shaneh <[email protected]> | 2012-11-26 21:00:35 +0200 |
---|---|---|
committer | Christian Kandeler <[email protected]> | 2012-11-27 16:02:47 +0100 |
commit | 63e5a3a1202ea35dac2d17742d710b9082a3cb5b (patch) | |
tree | 04a4c6c3df01dc8a5e74deaf160c7c77613859ba /src/plugins/madde/maddedevicetester.cpp | |
parent | 9dfc4f8efb20c07e111c556843f914376187ba13 (diff) |
Madde: Compile with QT_NO_CAST_FROM_ASCII
Change-Id: I1711c4286e6c1807e8e8e42732511cd70aa62b63
Reviewed-by: Friedemann Kleint <[email protected]>
Reviewed-by: Christian Kandeler <[email protected]>
Diffstat (limited to 'src/plugins/madde/maddedevicetester.cpp')
-rw-r--r-- | src/plugins/madde/maddedevicetester.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/madde/maddedevicetester.cpp b/src/plugins/madde/maddedevicetester.cpp index ac7592971b5..80a17a9754f 100644 --- a/src/plugins/madde/maddedevicetester.cpp +++ b/src/plugins/madde/maddedevicetester.cpp @@ -214,7 +214,7 @@ void MaddeDeviceTester::handleQmlToolingTestFinished(int exitStatus) m_result = TestFailure; } else if (m_processRunner->processExitCode() != 0) { emit errorMessage(tr("Missing directory '%1'. You will not be able to do " - "QML debugging on this device.\n").arg(QmlToolingDirectory)); + "QML debugging on this device.\n").arg(QLatin1String(QmlToolingDirectory))); m_result = TestFailure; } else { emit progressMessage(tr("QML tooling support present.\n")); |