forked from qt-creator/qt-creator
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:
@@ -1087,6 +1087,12 @@ void QmlEngine::quitDebugger()
|
|||||||
shutdownInferior();
|
shutdownInferior();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void QmlEngine::doUpdateLocals(const UpdateParameters ¶ms)
|
||||||
|
{
|
||||||
|
Q_UNUSED(params);
|
||||||
|
d->updateLocals();
|
||||||
|
}
|
||||||
|
|
||||||
void QmlEngine::disconnected()
|
void QmlEngine::disconnected()
|
||||||
{
|
{
|
||||||
showMessage(tr("QML Debugger disconnected."), StatusBar);
|
showMessage(tr("QML Debugger disconnected."), StatusBar);
|
||||||
|
|||||||
@@ -129,6 +129,8 @@ private:
|
|||||||
bool hasCapability(unsigned) const override;
|
bool hasCapability(unsigned) const override;
|
||||||
void quitDebugger() override;
|
void quitDebugger() override;
|
||||||
|
|
||||||
|
void doUpdateLocals(const UpdateParameters ¶ms) override;
|
||||||
|
|
||||||
void closeConnection();
|
void closeConnection();
|
||||||
void startApplicationLauncher();
|
void startApplicationLauncher();
|
||||||
void stopApplicationLauncher();
|
void stopApplicationLauncher();
|
||||||
|
|||||||
Reference in New Issue
Block a user