Android: Remove traces of special debugger setup

Change-Id: Ibf85a6e6e7c025287dd388bc5908cefc30fbaa2f
Reviewed-by: BogDan Vatra <bogdan@kdab.com>
This commit is contained in:
hjk
2018-05-08 11:31:10 +02:00
parent ce20bde99c
commit c4e3cda26a
7 changed files with 2 additions and 19 deletions

View File

@@ -650,12 +650,9 @@ void DebuggerEngine::notifyEngineSetupOk()
d->m_progress.setProgressValue(250);
QTC_ASSERT(state() == EngineSetupRequested, qDebug() << this << state());
setState(EngineSetupOk);
if (isMasterEngine() && runTool()) {
runTool()->aboutToNotifyInferiorSetupOk(); // FIXME: Remove, only used for Android.
runTool()->reportStarted();
}
if (isMasterEngine()) {
if (runTool())
runTool()->reportStarted();
// Slaves will get called setupSlaveInferior() below.
setState(EngineRunRequested);
showMessage("CALL: RUN ENGINE");