forked from qt-creator/qt-creator
QmlProfiler: Add some missing override
Change-Id: I79930e6166617d1635d08dade47390ca5ee27268 Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
@@ -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;
|
||||||
|
|
||||||
|
@@ -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);
|
||||||
|
@@ -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;
|
||||||
|
Reference in New Issue
Block a user