From ec161a4aa6a038319109502735884ef6653daf81 Mon Sep 17 00:00:00 2001 From: BogDan Vatra Date: Sun, 22 Mar 2015 11:50:01 +0200 Subject: [PATCH] Fire ProjectExplorerPlugin::runControlFinished signal. runControlFinished was never fired, let's fire it the same way as we fire runControlStarted signal. Change-Id: I551b9b534c428d97a90b28847383c5ed1dc6c718 Reviewed-by: Daniel Teske --- src/plugins/projectexplorer/projectexplorer.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/plugins/projectexplorer/projectexplorer.cpp b/src/plugins/projectexplorer/projectexplorer.cpp index 5d6ebf31bc1..67b5420a005 100644 --- a/src/plugins/projectexplorer/projectexplorer.cpp +++ b/src/plugins/projectexplorer/projectexplorer.cpp @@ -565,6 +565,8 @@ bool ProjectExplorerPlugin::initialize(const QStringList &arguments, QString *er connect(dd->m_outputPane, &AppOutputPane::runControlStarted, this, &ProjectExplorerPlugin::runControlStarted); + connect(dd->m_outputPane, &AppOutputPane::runControlFinished, + this, &ProjectExplorerPlugin::runControlFinished); connect(dd->m_outputPane, &AppOutputPane::runControlFinished, dd, &ProjectExplorerPluginPrivate::handleRunControlFinished);