aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/projectexplorersettings.h
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2012-01-11 14:49:32 +0100
committerhjk <qthjk@ovi.com>2012-01-11 15:29:05 +0100
commit62afcd67421f477a81fde59882575d0ac17936bd (patch)
treecab7ced6aa45dabf68a7e5078e789a16d6d95936 /src/plugins/projectexplorer/projectexplorersettings.h
parent6aa06579c2161dbdd47571baf516539814fe19f4 (diff)
ProjectExplorer: Add an option to pop up app outpuit pane when debugging
Task-number: QTCREATORBUG-6764 Change-Id: I24620c00220adccc39271a4d8c02cd0b6aec4b78 Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
Diffstat (limited to 'src/plugins/projectexplorer/projectexplorersettings.h')
-rw-r--r--src/plugins/projectexplorer/projectexplorersettings.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/projectexplorersettings.h b/src/plugins/projectexplorer/projectexplorersettings.h
index 2721b97c54e..c2161ace0eb 100644
--- a/src/plugins/projectexplorer/projectexplorersettings.h
+++ b/src/plugins/projectexplorer/projectexplorersettings.h
@@ -43,7 +43,8 @@ struct ProjectExplorerSettings
ProjectExplorerSettings() :
buildBeforeDeploy(true), deployBeforeRun(true),
saveBeforeBuild(false), showCompilerOutput(false),
- showRunOutput(true), cleanOldAppOutput(false), mergeStdErrAndStdOut(false),
+ showRunOutput(true), showDebugOutput(false),
+ cleanOldAppOutput(false), mergeStdErrAndStdOut(false),
wrapAppOutput(true), useJom(true),
autorestoreLastSession(false), prompToStopRunControl(false),
maxAppOutputLines(100000)
@@ -54,6 +55,7 @@ struct ProjectExplorerSettings
bool saveBeforeBuild;
bool showCompilerOutput;
bool showRunOutput;
+ bool showDebugOutput;
bool cleanOldAppOutput;
bool mergeStdErrAndStdOut;
bool wrapAppOutput;
@@ -75,6 +77,7 @@ inline bool operator==(const ProjectExplorerSettings &p1, const ProjectExplorerS
&& p1.saveBeforeBuild == p2.saveBeforeBuild
&& p1.showCompilerOutput == p2.showCompilerOutput
&& p1.showRunOutput == p2.showRunOutput
+ && p1.showDebugOutput == p2.showDebugOutput
&& p1.cleanOldAppOutput == p2.cleanOldAppOutput
&& p1.mergeStdErrAndStdOut == p2.mergeStdErrAndStdOut
&& p1.wrapAppOutput == p2.wrapAppOutput