mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 04:57:00 -04:00
Cleanup: use override specifier everywhere, and enable gcc warning to check for it.
This commit is contained in:
@@ -20,9 +20,9 @@ public:
|
||||
/// The set is optional
|
||||
CLISetInterface(const SetP& set, bool quiet = false, bool run = true);
|
||||
protected:
|
||||
virtual void onAction(const Action&, bool) {}
|
||||
virtual void onChangeSet();
|
||||
virtual void onBeforeChangeSet();
|
||||
void onAction(const Action&, bool) override {}
|
||||
void onChangeSet() override;
|
||||
void onBeforeChangeSet() override;
|
||||
private:
|
||||
bool quiet; ///< Supress prompts and other non-vital stuff
|
||||
bool running; ///< Still running?
|
||||
|
||||
Reference in New Issue
Block a user