aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/projectexplorersettings.h
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2019-05-27 16:36:24 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2019-05-27 15:24:40 +0000
commit0be5fe5383e2202d1bfb1085b267370d7bed8ebd (patch)
treeb10d0bfff823a55b33c473f07f4105d8047845dc /src/plugins/projectexplorer/projectexplorersettings.h
parentd0cf9be4522899eac09c8a86e1aeb8bb569e5ecb (diff)
ProjectExplorer: Make it configurable whether to clear the issues pane
... on a new build. Fixes: QTCREATORBUG-22478 Change-Id: If9d88d54397e03414088112f8c19363d9e153244 Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/projectexplorersettings.h')
-rw-r--r--src/plugins/projectexplorer/projectexplorersettings.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/projectexplorer/projectexplorersettings.h b/src/plugins/projectexplorer/projectexplorersettings.h
index 6d15d21a5c3..85e9a77abe1 100644
--- a/src/plugins/projectexplorer/projectexplorersettings.h
+++ b/src/plugins/projectexplorer/projectexplorersettings.h
@@ -49,6 +49,7 @@ public:
bool automaticallyCreateRunConfigurations = true;
bool addLibraryPathsToRunEnv = true;
bool closeSourceFilesWithProject = true;
+ bool clearIssuesOnRebuild = true;
StopBeforeBuild stopBeforeBuild = StopBeforeBuild::StopNone;
TerminalMode terminalMode = TerminalMode::Smart;
QString buildDirectoryTemplate;
@@ -73,6 +74,7 @@ inline bool operator==(const ProjectExplorerSettings &p1, const ProjectExplorerS
&& p1.stopBeforeBuild == p2.stopBeforeBuild
&& p1.terminalMode == p2.terminalMode
&& p1.closeSourceFilesWithProject == p2.closeSourceFilesWithProject
+ && p1.clearIssuesOnRebuild == p2.clearIssuesOnRebuild
&& p1.buildDirectoryTemplate == p2.buildDirectoryTemplate;
}