Utils: Use CommandLine in ConsoleProcess

Change-Id: I380b91513fa342819cba898196c91443622d0ae2
Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
hjk
2019-06-12 15:25:51 +02:00
parent 1455ab6c07
commit 465d4cc845
7 changed files with 38 additions and 18 deletions

View File

@@ -196,7 +196,8 @@ void TerminalRunner::start()
}
// Error message for user is delivered via a signal.
m_stubProc.start(m_stubRunnable.executable, m_stubRunnable.commandLineArguments);
m_stubProc.setCommand(m_stubRunnable.commandLine());
m_stubProc.start();
}
void TerminalRunner::stop()