QmlProfiler: reportStopped() only when entering Idle

Change-Id: I291ff6506a16e294165109a89f2acf22d24d7928
Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
This commit is contained in:
hjk
2017-08-09 13:45:08 +02:00
parent 4023e56d42
commit 6f5c5a56db

View File

@@ -133,10 +133,11 @@ void QmlProfilerRunner::stop()
switch (d->m_profilerState->currentState()) {
case QmlProfilerStateManager::AppRunning:
d->m_profilerState->setCurrentState(QmlProfilerStateManager::AppStopRequested);
return; // Don't reportStopped() here. We are still waiting for data.
break;
case QmlProfilerStateManager::AppStopRequested:
// Pressed "stop" a second time. Kill the application without collecting data
d->m_profilerState->setCurrentState(QmlProfilerStateManager::Idle);
reportStopped();
break;
case QmlProfilerStateManager::Idle:
case QmlProfilerStateManager::AppDying:
@@ -149,7 +150,6 @@ void QmlProfilerRunner::stop()
}
break;
}
reportStopped();
}
void QmlProfilerRunner::notifyRemoteFinished()