diff options
author | hjk <hjk121@nokiamail.com> | 2014-10-17 13:06:37 +0200 |
---|---|---|
committer | hjk <hjk121@nokiamail.com> | 2014-10-17 14:07:44 +0200 |
commit | 216b9501247c45f561694e15978dfc6c2a098609 (patch) | |
tree | 1617715f355c73456f4ede38d0afb30cb9f8c27f /src/plugins/debugger/debuggerrunner.cpp | |
parent | 7e5bad490513f0ad8fed86ea8ba17d8edbb90bfb (diff) | |
download | qt-creator-216b9501247c45f561694e15978dfc6c2a098609.tar.gz |
Debugger: Remove messaging indirection in DebuggerRunControl
The base functionality is good enough.
Change-Id: Ie39398828733245e0e74ca9a2941c069116014f0
Reviewed-by: Christian Stenger <christian.stenger@digia.com>
Diffstat (limited to 'src/plugins/debugger/debuggerrunner.cpp')
-rw-r--r-- | src/plugins/debugger/debuggerrunner.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/plugins/debugger/debuggerrunner.cpp b/src/plugins/debugger/debuggerrunner.cpp index 8fee0983ba..74816da543 100644 --- a/src/plugins/debugger/debuggerrunner.cpp +++ b/src/plugins/debugger/debuggerrunner.cpp @@ -192,21 +192,6 @@ void DebuggerRunControl::handleFinished() debuggerCore()->runControlFinished(m_engine); } -void DebuggerRunControl::showMessage(const QString &msg, int channel) -{ - switch (channel) { - case AppOutput: - appendMessage(msg, StdOutFormatSameLine); - break; - case AppError: - appendMessage(msg, StdErrFormatSameLine); - break; - case AppStuff: - appendMessage(msg, DebugFormat); - break; - } -} - bool DebuggerRunControl::promptToStop(bool *optionalPrompt) const { QTC_ASSERT(isRunning(), return true); |