File 004-run_control_signal-17.0.1.patch of Package qtcreator
diff -uprN qt-creator-opensource-src-17.0.1-orig/src/plugins/projectexplorer/projectexplorer.cpp qt-creator-opensource-src-17.0.1/src/plugins/projectexplorer/projectexplorer.cpp
--- qt-creator-opensource-src-17.0.1-orig/src/plugins/projectexplorer/projectexplorer.cpp 2025-08-26 03:28:20.000000000 +0200
+++ qt-creator-opensource-src-17.0.1/src/plugins/projectexplorer/projectexplorer.cpp 2025-09-03 14:37:31.149539195 +0200
@@ -2464,6 +2464,8 @@ void ProjectExplorerPluginPrivate::execu
return;
}
+ emit m_instance->aboutToExecuteRunControl(runControl, runMode);
+
startRunControl(runControl);
}
diff -uprN qt-creator-opensource-src-17.0.1-orig/src/plugins/projectexplorer/projectexplorer.h qt-creator-opensource-src-17.0.1/src/plugins/projectexplorer/projectexplorer.h
--- qt-creator-opensource-src-17.0.1-orig/src/plugins/projectexplorer/projectexplorer.h 2025-08-26 03:28:20.000000000 +0200
+++ qt-creator-opensource-src-17.0.1/src/plugins/projectexplorer/projectexplorer.h 2025-09-03 14:37:31.151315990 +0200
@@ -179,6 +179,8 @@ signals:
void filesRenamed(const Utils::FilePairs &oldAndNewPaths);
+ void aboutToExecuteRunControl(ProjectExplorer::RunControl* runControl, Utils::Id runMode);
+
private:
static bool coreAboutToClose();
void handleCommandLineArguments(const QStringList &arguments);