PerfProfiler: Add a few 'final' to settings

Change-Id: I8a57f1fde2f6dfc55384506bc2417c9fdce478e4
Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
This commit is contained in:
hjk
2019-03-25 14:52:17 +01:00
parent 1a1f261e7c
commit 90e828b890

View File

@@ -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;