summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/qml/qmlengine.cpp
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2017-09-07 15:20:29 +0200
committerUlf Hermann <ulf.hermann@qt.io>2017-09-07 13:28:59 +0000
commit11b8b6591c10180c7eaf5fc4995b5d6b48e45a63 (patch)
tree962480790f548ca90708c0807c10d5b21e9138ec /src/plugins/debugger/qml/qmlengine.cpp
parent1634987caefd36303c048a271ae67ca6b927a001 (diff)
downloadqt-creator-11b8b6591c10180c7eaf5fc4995b5d6b48e45a63.tar.gz
Qml Debugger: Add missing override
Change-Id: Icc704ee9539030f747b29e6285ab4f37b3b1763a Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/debugger/qml/qmlengine.cpp')
-rw-r--r--src/plugins/debugger/qml/qmlengine.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/qml/qmlengine.cpp b/src/plugins/debugger/qml/qmlengine.cpp
index f5f87fd305..efdd40b30f 100644
--- a/src/plugins/debugger/qml/qmlengine.cpp
+++ b/src/plugins/debugger/qml/qmlengine.cpp
@@ -146,8 +146,8 @@ public:
inspectorAgent(engine, connection)
{}
- void messageReceived(const QByteArray &data);
- void stateChanged(State state);
+ void messageReceived(const QByteArray &data) override;
+ void stateChanged(State state) override;
void continueDebugging(StepAction stepAction);