forked from qt-creator/qt-creator
Android: notify qml profiler when app is stopped
As we cannot determine reliably what happened to the app we drop the "success" parameter to notifyRemoteFinished(). It was almost always true before and where it wasn't it didn't do anything useful. The transition from AppRunning to AppKilled without AppDying in between was invalid and would have triggered an assertion when it happened. Task-number: QTCREATORBUG-11760 Change-Id: Iebf4ca9bddbcc7b152131f9574bc5f2c0a8ba44f Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This commit is contained in:
@@ -113,7 +113,7 @@ void QnxAnalyzeSupport::handleRemoteProcessFinished(bool success)
|
||||
if (!success)
|
||||
showMessage(tr("The %1 process closed unexpectedly.").arg(executable()),
|
||||
Utils::NormalMessageFormat);
|
||||
m_runControl->notifyRemoteFinished(success);
|
||||
m_runControl->notifyRemoteFinished();
|
||||
|
||||
m_slog2Info->stop();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user