Remove useless warning dialog.

Redirect the errors to the application output window.

Change-Id: I927fae72a53314d0200ffbd13c68900d15259cf9
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This commit is contained in:
BogDan Vatra
2012-12-18 14:25:07 +02:00
committed by Daniel Teske
parent f504ce8b8e
commit 57738988f2
4 changed files with 11 additions and 14 deletions

View File

@@ -156,9 +156,8 @@ void AndroidDebugSupport::handleRemoteProcessStarted(int gdbServerPort, int qmlP
void AndroidDebugSupport::handleRemoteProcessFinished(const QString &errorMsg)
{
disconnect(m_runner, SIGNAL(remoteProcessFinished(QString)),
this,SLOT(handleRemoteProcessFinished(QString)));
m_runControl->engine()->notifyEngineRemoteSetupFailed(errorMsg);
if (m_runControl)
m_runControl->showMessage(errorMsg, AppStuff);
}
void AndroidDebugSupport::handleRemoteOutput(const QByteArray &output)