ios: always write out when a run ends

Currently normal end of an ios run is silent. This looks strange as
the startup writes a string.

Change-Id: I64d082153b11ff6db4d6b1d85bce1da143cf329d
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
Reviewed-by: Fawzi Mohamed <fawzi.mohamed@digia.com>
This commit is contained in:
Fawzi Mohamed
2014-04-07 16:17:12 +02:00
parent a17c231b07
commit 152f9c3646
3 changed files with 14 additions and 7 deletions

View File

@@ -226,10 +226,13 @@ void IosDebugSupport::handleGotInferiorPid(Q_PID pid, int qmlPort)
void IosDebugSupport::handleRemoteProcessFinished(bool cleanEnd)
{
if (!cleanEnd && m_runControl)
m_runControl->showMessage(tr("Run failed unexpectedly."), AppStuff);
//m_runControl->engine()->notifyInferiorIll();
m_runControl->engine()->abortDebugger();
if (m_runControl) {
if (!cleanEnd)
m_runControl->showMessage(tr("Run ended with error."), AppStuff);
else
m_runControl->showMessage(tr("Run ended."), AppStuff);
m_runControl->engine()->abortDebugger();
}
}
void IosDebugSupport::handleRemoteOutput(const QString &output)