summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/debuggerrunner.cpp
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2014-05-26 23:42:25 +0300
committerOrgad Shaneh <orgads@gmail.com>2014-05-28 13:22:11 +0200
commitaf5b3246cf080afdc0fa75fe7808d569fb5d6302 (patch)
treeaf88ade4f8309970a2cce2c69cbcb5ae0bc2dc22 /src/plugins/debugger/debuggerrunner.cpp
parent536fb92f3b86ca468be5d89dc484a6337f507125 (diff)
downloadqt-creator-af5b3246cf080afdc0fa75fe7808d569fb5d6302.tar.gz
ProjectExplorer: Get rid of LocalApplicationRunConfiguration::RunMode
Change-Id: I132eb2615842ad7fdf6d7fa0f87d8c2c0c77203e Reviewed-by: hjk <hjk121@nokiamail.com>
Diffstat (limited to 'src/plugins/debugger/debuggerrunner.cpp')
-rw-r--r--src/plugins/debugger/debuggerrunner.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggerrunner.cpp b/src/plugins/debugger/debuggerrunner.cpp
index 41838cd0ee..ef452add35 100644
--- a/src/plugins/debugger/debuggerrunner.cpp
+++ b/src/plugins/debugger/debuggerrunner.cpp
@@ -333,7 +333,7 @@ static DebuggerStartParameters localStartParameters(RunConfiguration *runConfigu
return sp;
sp.processArgs = rc->commandLineArguments();
- sp.useTerminal = rc->runMode() == LocalApplicationRunConfiguration::Console;
+ sp.useTerminal = rc->runMode() == ApplicationLauncher::Console;
if (target) {
if (const Project *project = target->project()) {