diff options
author | hjk <[email protected]> | 2010-06-30 13:15:44 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2010-06-30 14:40:04 +0200 |
commit | afb54077f5f4bf576fa93074e803270fcb15ba70 (patch) | |
tree | 368ac5607780a279feb24464cf8744ed39f48edf /src/plugins/debugger/debuggerrunner.cpp | |
parent | f538736cfcb520faa70882912dc7d7f7cf81dace (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.cpp | 7 |
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); } |