aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/waitforstopdialog.cpp
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2017-07-11 17:25:33 +0200
committerhjk <hjk@qt.io>2017-07-12 10:06:34 +0000
commit0a2032e4341a77475e459cedc17ad23ef682df83 (patch)
tree6179cac7a28ddf01d38da0be8a070466d6b59007 /src/plugins/projectexplorer/waitforstopdialog.cpp
parent9e67a9453a404a9a373b0066c54a0e339704cde2 (diff)
ProjectExplorer: Rename RunControl::finished to stopped
That's what it is. Change-Id: I8cf9af23bb7cafe1cde8f165fdbf85cdeb79f7e4 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/waitforstopdialog.cpp')
-rw-r--r--src/plugins/projectexplorer/waitforstopdialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/waitforstopdialog.cpp b/src/plugins/projectexplorer/waitforstopdialog.cpp
index e7006ecdbde..1a7852989d9 100644
--- a/src/plugins/projectexplorer/waitforstopdialog.cpp
+++ b/src/plugins/projectexplorer/waitforstopdialog.cpp
@@ -55,7 +55,7 @@ WaitForStopDialog::WaitForStopDialog(QList<ProjectExplorer::RunControl *> runCon
updateProgressText();
foreach (RunControl *rc, runControls)
- connect(rc, &RunControl::finished, this, &WaitForStopDialog::runControlFinished);
+ connect(rc, &RunControl::stopped, this, &WaitForStopDialog::runControlFinished);
m_timer.start();
}