File 005-run_control_signal-4.4.1.patch of Package qtcreator
diff -uprN qt-creator-opensource-src-4.4.1-orig/src/plugins/projectexplorer/projectexplorer.cpp qt-creator-opensource-src-4.4.1/src/plugins/projectexplorer/projectexplorer.cpp
--- qt-creator-opensource-src-4.4.1-orig/src/plugins/projectexplorer/projectexplorer.cpp 2017-10-02 10:30:11.000000000 +0200
+++ qt-creator-opensource-src-4.4.1/src/plugins/projectexplorer/projectexplorer.cpp 2017-11-18 10:56:05.280344649 +0100
@@ -2012,7 +2012,7 @@ void ProjectExplorerPluginPrivate::execu
auto runControl = new RunControl(runConfiguration, runMode);
(void) producer(runControl);
- emit m_instance->aboutToExecuteProject(runConfiguration->target()->project(), runMode);
+ emit m_instance->aboutToExecuteRunControl(runControl, runMode);
startRunControl(runControl);
}
diff -uprN qt-creator-opensource-src-4.4.1-orig/src/plugins/projectexplorer/projectexplorer.h qt-creator-opensource-src-4.4.1/src/plugins/projectexplorer/projectexplorer.h
--- qt-creator-opensource-src-4.4.1-orig/src/plugins/projectexplorer/projectexplorer.h 2017-10-02 10:30:11.000000000 +0200
+++ qt-creator-opensource-src-4.4.1/src/plugins/projectexplorer/projectexplorer.h 2017-11-18 10:56:05.280344649 +0100
@@ -166,7 +166,7 @@ signals:
// or the file list of a specific project has changed.
void fileListChanged();
- void aboutToExecuteProject(ProjectExplorer::Project *project, Core::Id runMode);
+ void aboutToExecuteRunControl(ProjectExplorer::RunControl *runControl, Core::Id runMode);
void recentProjectsChanged();
void settingsChanged();