Debugger: Remove messaging indirection in DebuggerRunControl

The base functionality is good enough.

Change-Id: Ie39398828733245e0e74ca9a2941c069116014f0
Reviewed-by: Christian Stenger <christian.stenger@digia.com>
This commit is contained in:
hjk
2014-10-17 13:06:37 +02:00
parent 7e5bad4905
commit 216b950124
6 changed files with 21 additions and 27 deletions

View File

@@ -166,7 +166,7 @@ AndroidDebugSupport::AndroidDebugSupport(AndroidRunConfiguration *runConfig,
connect(m_runner, &AndroidRunner::remoteProcessFinished,
[this](const QString &errorMsg) {
QTC_ASSERT(m_runControl, return);
m_runControl->showMessage(errorMsg, AppStuff);
m_runControl->appendMessage(errorMsg, Utils::DebugFormat);
});
connect(m_runner, &AndroidRunner::remoteErrorOutput,