forked from qt-creator/qt-creator
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:
@@ -113,7 +113,7 @@ void QnxAttachDebugSupport::launchPDebug()
|
||||
StandardRunnable r;
|
||||
r.executable = QLatin1String("pdebug");
|
||||
r.commandLineArguments = QString::number(m_pdebugPort.number());
|
||||
m_runner->start(m_device, r);
|
||||
m_runner->start(r, m_device);
|
||||
}
|
||||
|
||||
void QnxAttachDebugSupport::attachToProcess()
|
||||
|
||||
Reference in New Issue
Block a user