forked from qt-creator/qt-creator
Debugger: Use StandardRunnable in DebuggerStartParameters
This is a mechanical replacement for the former executable, processArgs, inferiorEnvironment and workingDirectory members. Change-Id: I4160e01427ed801df9b729f1f31d0a2ca48159b5 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
@@ -536,11 +536,7 @@ void QmlEngine::runEngine()
|
||||
void QmlEngine::startApplicationLauncher()
|
||||
{
|
||||
if (!d->applicationLauncher.isRunning()) {
|
||||
StandardRunnable runnable;
|
||||
runnable.environment = runParameters().inferiorEnvironment;
|
||||
runnable.workingDirectory = runParameters().workingDirectory;
|
||||
runnable.executable = runParameters().executable;
|
||||
runnable.commandLineArguments = runParameters().processArgs;
|
||||
StandardRunnable runnable = runParameters().inferior;
|
||||
appendMessage(tr("Starting %1 %2").arg(
|
||||
QDir::toNativeSeparators(runnable.executable),
|
||||
runnable.commandLineArguments)
|
||||
|
||||
Reference in New Issue
Block a user