Remove AndroidRunner::asyncStop; always stop synchronously.

Change-Id: Ide262b32146cca6abdb59c26969deb64f255cf10
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This commit is contained in:
Ray Donnelly
2012-12-12 14:35:38 +00:00
committed by Daniel Teske
parent 9917f9a71b
commit 7857b9c955
2 changed files with 0 additions and 5 deletions

View File

@@ -256,10 +256,6 @@ void AndroidRunner::stop()
m_checkPIDTimer.stop();
if (m_processPID == -1)
return; // don't emit another signal
QtConcurrent::run(this, &AndroidRunner::asyncStop);
}
void AndroidRunner::asyncStop()
{
killPID();
emit remoteProcessFinished(tr("\n\n'%1' killed.").arg(m_packageName));
}