aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@theqtcompany.com>2015-12-18 11:42:09 +0100
committerTobias Hunger <tobias.hunger@theqtcompany.com>2015-12-18 10:44:17 +0000
commita2bffbefb38a73b5c6968928fadaa93a5b58612e (patch)
treed0c6f2d80902d1a90948aa2e6e3173f75021a187
parent77fc9a38a271e589a228ac9d9a6644d47c6744e8 (diff)
Add missing override to quieten warning
Change-Id: Ibb14de894ae9e9c3eae367895fb03590ccb061d9 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
-rw-r--r--plugins/qmlprofiler/debugmessagesmodel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/qmlprofiler/debugmessagesmodel.h b/plugins/qmlprofiler/debugmessagesmodel.h
index 879dbd4c0f..c1bdbd721b 100644
--- a/plugins/qmlprofiler/debugmessagesmodel.h
+++ b/plugins/qmlprofiler/debugmessagesmodel.h
@@ -29,7 +29,7 @@ class DebugMessagesModel : public QmlProfiler::QmlProfilerTimelineModel
Q_OBJECT
protected:
- bool accepted(const QmlProfiler::QmlProfilerDataModel::QmlEventTypeData &event) const;
+ bool accepted(const QmlProfiler::QmlProfilerDataModel::QmlEventTypeData &event) const override;
public:
DebugMessagesModel(QmlProfiler::QmlProfilerModelManager *manager, QObject *parent = 0);