aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/debuggerrunner.cpp
diff options
context:
space:
mode:
authorhjk <[email protected]>2010-08-27 16:07:42 +0200
committerhjk <[email protected]>2010-08-27 17:24:22 +0200
commit98bd57d2bac7dcadcda8a49a4afbe37e76d37ecf (patch)
tree612e77f45f9913f595fce0cbfae1417707cd7947 /src/plugins/debugger/debuggerrunner.cpp
parentaf01698cfc357ac86790e07ca5bcf22ceb771452 (diff)
debugger: add a few lines to the Application Output pane on debugger start/stop
Diffstat (limited to 'src/plugins/debugger/debuggerrunner.cpp')
-rw-r--r--src/plugins/debugger/debuggerrunner.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/debugger/debuggerrunner.cpp b/src/plugins/debugger/debuggerrunner.cpp
index 9238fdb34a4..fd649a3079c 100644
--- a/src/plugins/debugger/debuggerrunner.cpp
+++ b/src/plugins/debugger/debuggerrunner.cpp
@@ -510,11 +510,14 @@ void DebuggerRunControl::start()
engine()->startDebugger(this);
m_running = true;
+ emit addToOutputWindowInline(this, tr("Debugging starts"), false);
+ emit addToOutputWindowInline(this, "\n", false);
emit started();
}
void DebuggerRunControl::startFailed()
{
+ emit addToOutputWindowInline(this, tr("Debugging has failed"), false);
m_running = false;
emit finished();
engine()->handleStartFailed();
@@ -522,6 +525,7 @@ void DebuggerRunControl::startFailed()
void DebuggerRunControl::handleFinished()
{
+ emit addToOutputWindowInline(this, tr("Debugging has finished"), false);
engine()->handleFinished();
plugin()->runControlFinished(this);
}