QmlProfiler: Add some missing override

Change-Id: I79930e6166617d1635d08dade47390ca5ee27268
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
Ulf Hermann
2018-04-05 09:34:29 +02:00
parent 7f7fe1a9db
commit 181ad6671c
3 changed files with 3 additions and 3 deletions

View File

@@ -59,7 +59,7 @@ public:
typedef std::function<void()> Finalizer; typedef std::function<void()> Finalizer;
explicit QmlProfilerModelManager(QObject *parent = nullptr); explicit QmlProfilerModelManager(QObject *parent = nullptr);
~QmlProfilerModelManager(); ~QmlProfilerModelManager() override;
State state() const; State state() const;

View File

@@ -47,7 +47,7 @@ public:
QmlProfilerTraceClient(QmlDebug::QmlDebugConnection *client, QmlProfilerTraceClient(QmlDebug::QmlDebugConnection *client,
QmlProfilerModelManager *modelManager, QmlProfilerModelManager *modelManager,
quint64 features); quint64 features);
~QmlProfilerTraceClient(); ~QmlProfilerTraceClient() override;
bool isRecording() const; bool isRecording() const;
void setRecording(bool); void setRecording(bool);

View File

@@ -46,7 +46,7 @@ class QmlProfilerTraceView : public QWidget
public: public:
explicit QmlProfilerTraceView(QWidget *parent, QmlProfilerViewManager *container, explicit QmlProfilerTraceView(QWidget *parent, QmlProfilerViewManager *container,
QmlProfilerModelManager *modelManager); QmlProfilerModelManager *modelManager);
~QmlProfilerTraceView(); ~QmlProfilerTraceView() override;
bool hasValidSelection() const; bool hasValidSelection() const;
qint64 selectionStart() const; qint64 selectionStart() const;