forked from qt-creator/qt-creator
ProjectExplorer: Rename worker dependencies to "startDependencies"
There will be stopDependencies, too, which apply when stopping the runcontrol. Change-Id: Id72771d28cbb6b254572c9f93db93e0d054b890f Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -99,12 +99,12 @@ QnxDebugSupport::QnxDebugSupport(RunControl *runControl)
|
||||
m_portsGatherer->setUseQmlServer(isQmlDebugging());
|
||||
|
||||
auto debuggeeRunner = new QnxDebuggeeRunner(runControl, m_portsGatherer);
|
||||
debuggeeRunner->addDependency(m_portsGatherer);
|
||||
debuggeeRunner->addStartDependency(m_portsGatherer);
|
||||
|
||||
auto slog2InfoRunner = new Slog2InfoRunner(runControl);
|
||||
slog2InfoRunner->addDependency(debuggeeRunner);
|
||||
slog2InfoRunner->addStartDependency(debuggeeRunner);
|
||||
|
||||
addDependency(slog2InfoRunner);
|
||||
addStartDependency(slog2InfoRunner);
|
||||
}
|
||||
|
||||
void QnxDebugSupport::start()
|
||||
|
||||
Reference in New Issue
Block a user