Switch order of DeviceApplicationRunner::start() parameters

In preparation of merging the class with LocalApplicationLauncher.

Change-Id: I190f8da34a2420061f05ccf4a9fdd428c2a2c57b
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
hjk
2017-03-01 18:31:33 +01:00
parent 51d14393c4
commit d2b82c6cf1
10 changed files with 11 additions and 11 deletions

View File

@@ -162,7 +162,7 @@ void LinuxDeviceDebugSupport::startExecution()
}
r.executable = command;
r.commandLineArguments = QtcProcess::joinArgs(args, OsTypeLinux);
runner->start(device(), r);
runner->start(r, device());
}
void LinuxDeviceDebugSupport::handleAppRunnerError(const QString &error)