aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-10-21 09:44:39 +0200
committerFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-10-22 08:57:27 +0000
commit8ee3673e439b4499a8a4a4280637ee0270c4a54a (patch)
tree1c7f7b46482fde535ef6c958e3be004b8584e2ec /src/plugins
parentfe83ad3ca6f13b0289a96d9459e94c45cd8b47c2 (diff)
QQmlNativeDebugConnector: Do not translate warning.
qWarnings() usually are not translated. Change-Id: I0375e0e21054d33349d3f56ee9ac6f580e366736 Reviewed-by: Ulf Hermann <ulf.hermann@theqtcompany.com>
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/qmltooling/qmldbg_native/qqmlnativedebugconnector.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/qmltooling/qmldbg_native/qqmlnativedebugconnector.cpp b/src/plugins/qmltooling/qmldbg_native/qqmlnativedebugconnector.cpp
index 2528d993ad..6621eafb27 100644
--- a/src/plugins/qmltooling/qmldbg_native/qqmlnativedebugconnector.cpp
+++ b/src/plugins/qmltooling/qmldbg_native/qqmlnativedebugconnector.cpp
@@ -219,8 +219,8 @@ QQmlNativeDebugConnector::QQmlNativeDebugConnector()
} else if (!services.isEmpty()) {
services.append(strArgument);
} else {
- qWarning() << tr("QML Debugger: Invalid argument \"%1\" detected. Ignoring the same.")
- .arg(strArgument);
+ qWarning("QML Debugger: Invalid argument \"%s\" detected. Ignoring the same.",
+ qUtf8Printable(strArgument));
}
}
setServices(services);