forked from qt-creator/qt-creator
PerfProfiler: Add a few 'final' to settings
Change-Id: I8a57f1fde2f6dfc55384506bc2417c9fdce478e4 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
This commit is contained in:
@@ -40,7 +40,7 @@ class PERFPROFILER_EXPORT PerfSettings : public ProjectExplorer::ISettingsAspect
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
explicit PerfSettings(ProjectExplorer::Target *target = nullptr);
|
explicit PerfSettings(ProjectExplorer::Target *target = nullptr);
|
||||||
~PerfSettings();
|
~PerfSettings() final;
|
||||||
|
|
||||||
void readGlobalSettings();
|
void readGlobalSettings();
|
||||||
void writeGlobalSettings() const;
|
void writeGlobalSettings() const;
|
||||||
@@ -66,8 +66,8 @@ signals:
|
|||||||
void changed();
|
void changed();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void toMap(QVariantMap &map) const;
|
void toMap(QVariantMap &map) const final;
|
||||||
void fromMap(const QVariantMap &map);
|
void fromMap(const QVariantMap &map) final;
|
||||||
|
|
||||||
int m_period;
|
int m_period;
|
||||||
int m_stackSize;
|
int m_stackSize;
|
||||||
|
Reference in New Issue
Block a user