QmlDebugger: Print executable + arguments in application output

Print the path of the executable and command line arguments, just like we
do for the Run action.
This commit is contained in:
Kai Koehne
2011-02-08 15:32:14 +01:00
parent 04514ed459
commit 1ddc9442e6

View File

@@ -295,6 +295,7 @@ void QmlEngine::runEngine()
void QmlEngine::startApplicationLauncher()
{
if (!d->m_applicationLauncher.isRunning()) {
appendMessage(tr("Starting %1 %2").arg(QDir::toNativeSeparators(startParameters().executable), startParameters().processArgs), NormalMessageFormat);
d->m_applicationLauncher.start(ApplicationLauncher::Gui,
startParameters().executable,
startParameters().processArgs);