From 3a3596bb4ffa57c4822321f2bac63d69bd206cf3 Mon Sep 17 00:00:00 2001 From: Andre Hartmann Date: Sat, 5 Jan 2019 21:54:33 +0100 Subject: [PATCH] Application Output: Show command line arguments when starting program Fixes: QTCREATORBUG-20577 Change-Id: Ia503618df972e709457c02ed7df6f10512af5836 Reviewed-by: Orgad Shaneh Reviewed-by: Christian Kandeler --- src/plugins/projectexplorer/runconfiguration.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/runconfiguration.cpp b/src/plugins/projectexplorer/runconfiguration.cpp index aeaf2452802..475eeb9dca3 100644 --- a/src/plugins/projectexplorer/runconfiguration.cpp +++ b/src/plugins/projectexplorer/runconfiguration.cpp @@ -1555,7 +1555,8 @@ void SimpleTargetRunner::start() const QString displayName = isDesktop ? QDir::toNativeSeparators(rawDisplayName) : rawDisplayName; - const QString msg = RunControl::tr("Starting %1...").arg(displayName); + const QString msg = RunControl::tr("Starting %1 %2...") + .arg(displayName).arg(m_runnable.commandLineArguments); appendMessage(msg, Utils::NormalMessageFormat); if (isDesktop) {