Debugger: Implement QmlEngine::doUpdateLocals

This allows us to sort the locals by name immediately when the action
is triggered.

Task-number: QTCREATORBUG-16645
Change-Id: Ifd24f49e66523af5e988065c9a33aae00e7fb290
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Ulf Hermann
2016-11-03 15:52:30 +01:00
parent f94bb76eac
commit fc80a5afb4
2 changed files with 8 additions and 0 deletions

View File

@@ -1087,6 +1087,12 @@ void QmlEngine::quitDebugger()
shutdownInferior();
}
void QmlEngine::doUpdateLocals(const UpdateParameters &params)
{
Q_UNUSED(params);
d->updateLocals();
}
void QmlEngine::disconnected()
{
showMessage(tr("QML Debugger disconnected."), StatusBar);