forked from qt-creator/qt-creator
Add missing "final" to unexported/unshared classes
Change-Id: I84d5fc39d7ef5588a20545854d0cfd0b993db090 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -385,8 +385,8 @@ public:
|
||||
m_group.insert(action(MaximalStringLength), spinBoxMaximalStringLength);
|
||||
}
|
||||
|
||||
void apply() { m_group.apply(ICore::settings()); }
|
||||
void finish() { m_group.finish(); }
|
||||
void apply() final { m_group.apply(ICore::settings()); }
|
||||
void finish() final { m_group.finish(); }
|
||||
|
||||
private:
|
||||
Utils::SavedActionSet m_group;
|
||||
|
||||
Reference in New Issue
Block a user