-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Needed patches (to use aboutToExecuteRunControl() signal)
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
diff -uprN qt-creator-opensource-src-4.6.0-orig/src/plugins/projectexplorer/projectexplorer.cpp qt-creator-opensource-src-4.6.0/src/plugins/projectexplorer/projectexplorer.cpp | ||
--- qt-creator-opensource-src-4.6.0-orig/src/plugins/projectexplorer/projectexplorer.cpp 2018-03-27 13:44:46.000000000 +0200 | ||
+++ qt-creator-opensource-src-4.6.0/src/plugins/projectexplorer/projectexplorer.cpp 2018-04-07 14:06:56.658206131 +0200 | ||
@@ -2036,6 +2036,8 @@ void ProjectExplorerPluginPrivate::execu | ||
return; | ||
} | ||
|
||
+ emit m_instance->aboutToExecuteRunControl(runControl, runMode); | ||
+ | ||
startRunControl(runControl); | ||
} | ||
|
||
diff -uprN qt-creator-opensource-src-4.6.0-orig/src/plugins/projectexplorer/projectexplorer.h qt-creator-opensource-src-4.6.0/src/plugins/projectexplorer/projectexplorer.h | ||
--- qt-creator-opensource-src-4.6.0-orig/src/plugins/projectexplorer/projectexplorer.h 2018-03-27 13:44:46.000000000 +0200 | ||
+++ qt-creator-opensource-src-4.6.0/src/plugins/projectexplorer/projectexplorer.h 2018-04-07 14:05:02.455384477 +0200 | ||
@@ -176,6 +176,8 @@ signals: | ||
|
||
void updateRunActions(); | ||
|
||
+ void aboutToExecuteRunControl(ProjectExplorer::RunControl* runControl, Core::Id runMode); | ||
+ | ||
private: | ||
static bool coreAboutToClose(); | ||
|