summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@digia.com>2014-08-21 18:03:23 +0200
committerRobert Loehning <robert.loehning@digia.com>2014-08-26 11:03:01 +0200
commit2e8509d8b2608af5cdcedda6c30e96bceab6586d (patch)
treed1319cf18eeadf776ac5e687dfe1afbc6a506bc0 /src
parent3a766027777d5426fb020edbc887eeac76acff58 (diff)
downloadqt-creator-2e8509d8b2608af5cdcedda6c30e96bceab6586d.tar.gz
Fix missing argument
Change-Id: Id43d168859012ce9dcebb62e996cfdef7079aaaa Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com> Reviewed-by: Eike Ziller <eike.ziller@digia.com>
Diffstat (limited to 'src')
-rw-r--r--src/plugins/winrt/winrtdebugsupport.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/winrt/winrtdebugsupport.cpp b/src/plugins/winrt/winrtdebugsupport.cpp
index bb6bd4a373..ae6d322814 100644
--- a/src/plugins/winrt/winrtdebugsupport.cpp
+++ b/src/plugins/winrt/winrtdebugsupport.cpp
@@ -84,7 +84,7 @@ RunControl *WinRtDebugSupport::createDebugRunControl(WinRtRunConfiguration *runC
+ QLatin1String("/winrtdebughelper.exe"));
if (!debuggerHelper.isExecutable()) {
*errorMessage = tr("The WinRT debugging helper is missing from your Qt Creator "
- "installation. It was assumed to be located at").arg(
+ "installation. It was assumed to be located at %1").arg(
debuggerHelper.absoluteFilePath());
return 0;
}