forked from qt-creator/qt-creator
ProjectExplorer: Rename RunControl::finished to stopped
That's what it is. Change-Id: I8cf9af23bb7cafe1cde8f165fdbf85cdeb79f7e4 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -374,13 +374,13 @@ void TestRunner::debugTests()
|
||||
processOutput(outputreader, msg, format);
|
||||
});
|
||||
|
||||
connect(runControl, &ProjectExplorer::RunControl::finished,
|
||||
connect(runControl, &ProjectExplorer::RunControl::stopped,
|
||||
outputreader, &QObject::deleteLater);
|
||||
}
|
||||
|
||||
connect(this, &TestRunner::requestStopTestRun, runControl,
|
||||
&ProjectExplorer::RunControl::initiateStop);
|
||||
connect(runControl, &ProjectExplorer::RunControl::finished, this, &TestRunner::onFinished);
|
||||
connect(runControl, &ProjectExplorer::RunControl::stopped, this, &TestRunner::onFinished);
|
||||
ProjectExplorer::ProjectExplorerPlugin::startRunControl(runControl);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user