aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2016-01-07 19:33:31 -0800
committerThiago Macieira <thiago.macieira@intel.com>2016-01-08 18:17:04 +0000
commit74580d00921ce7cc6f8baf70b15903f5cf707b78 (patch)
treece556dffc5b2aab0689caa639d703ef4bbdecf34 /src
parent9e5cdcdd4b6ad09aa509fa84f15ad540ae8c52b5 (diff)
Fix inconsistent use of override keyword
Change-Id: I408dcb81ba654c929f25ffff1427560b6e7962ad Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
Diffstat (limited to 'src')
-rw-r--r--src/plugins/qmltooling/qmldbg_debugger/qqmlenginedebugservice.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/qmltooling/qmldbg_debugger/qqmlenginedebugservice.h b/src/plugins/qmltooling/qmldbg_debugger/qqmlenginedebugservice.h
index 29acb0e736..68cb420cc0 100644
--- a/src/plugins/qmltooling/qmldbg_debugger/qqmlenginedebugservice.h
+++ b/src/plugins/qmltooling/qmldbg_debugger/qqmlenginedebugservice.h
@@ -89,9 +89,9 @@ public:
bool hasNotifySignal;
};
- void engineAboutToBeAdded(QQmlEngine *);
- void engineAboutToBeRemoved(QQmlEngine *);
- void objectCreated(QQmlEngine *, QObject *);
+ void engineAboutToBeAdded(QQmlEngine *) Q_DECL_OVERRIDE;
+ void engineAboutToBeRemoved(QQmlEngine *) Q_DECL_OVERRIDE;
+ void objectCreated(QQmlEngine *, QObject *) Q_DECL_OVERRIDE;
void setStatesDelegate(QQmlDebugStatesDelegate *) Q_DECL_OVERRIDE;