mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 13:06:59 -04:00
Cleanup: use override specifier everywhere, and enable gcc warning to check for it.
This commit is contained in:
@@ -36,7 +36,7 @@ public:
|
||||
class GlobalPreferencesPage : public PreferencesPage {
|
||||
public:
|
||||
GlobalPreferencesPage(Window* parent);
|
||||
void store();
|
||||
void store() override;
|
||||
|
||||
private:
|
||||
wxComboBox* language;
|
||||
@@ -47,7 +47,7 @@ private:
|
||||
class DisplayPreferencesPage : public PreferencesPage {
|
||||
public:
|
||||
DisplayPreferencesPage(Window* parent);
|
||||
void store();
|
||||
void store() override;
|
||||
|
||||
private:
|
||||
DECLARE_EVENT_TABLE();
|
||||
@@ -74,7 +74,7 @@ private:
|
||||
class DirsPreferencesPage : public PreferencesPage {
|
||||
public:
|
||||
DirsPreferencesPage(Window* parent);
|
||||
void store();
|
||||
void store() override;
|
||||
|
||||
private:
|
||||
DECLARE_EVENT_TABLE();
|
||||
@@ -88,7 +88,7 @@ private:
|
||||
class UpdatePreferencesPage : public PreferencesPage {
|
||||
public:
|
||||
UpdatePreferencesPage(Window* parent);
|
||||
void store();
|
||||
void store() override;
|
||||
|
||||
private:
|
||||
DECLARE_EVENT_TABLE();
|
||||
|
||||
Reference in New Issue
Block a user