aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/debuggerrunner.cpp
diff options
context:
space:
mode:
authorhjk <[email protected]>2010-06-30 13:15:44 +0200
committerhjk <[email protected]>2010-06-30 14:40:04 +0200
commitafb54077f5f4bf576fa93074e803270fcb15ba70 (patch)
tree368ac5607780a279feb24464cf8744ed39f48edf /src/plugins/debugger/debuggerrunner.cpp
parentf538736cfcb520faa70882912dc7d7f7cf81dace (diff)
debugger: fix some regressions in the log output after the engine refactoring
Diffstat (limited to 'src/plugins/debugger/debuggerrunner.cpp')
-rw-r--r--src/plugins/debugger/debuggerrunner.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/plugins/debugger/debuggerrunner.cpp b/src/plugins/debugger/debuggerrunner.cpp
index d642beeb840..ae212ff8b44 100644
--- a/src/plugins/debugger/debuggerrunner.cpp
+++ b/src/plugins/debugger/debuggerrunner.cpp
@@ -461,10 +461,9 @@ void DebuggerRunControl::start()
}
plugin()->activateDebugMode();
-
- showMessage(tr("Starting debugger for tool chain '%1'...")
- .arg(toolChainName(sp.toolChainType)), LogStatus);
- showMessage(DebuggerSettings::instance()->dump(), LogDebug);
+ plugin()->showMessage(tr("Starting debugger for tool chain '%1'...")
+ .arg(toolChainName(sp.toolChainType)), StatusBar);
+ plugin()->showMessage(DebuggerSettings::instance()->dump(), LogDebug);
engine()->startDebugger(this);
}