Fix missing 'override's.

This commit is contained in:
Stephen Anthony 2019-05-01 12:57:49 -02:30
parent 0a85e507d0
commit bd288f7119
2 changed files with 3 additions and 3 deletions

View File

@ -74,7 +74,7 @@ class DebuggerDialog : public Dialog
void showFatalMessage(const string& msg);
private:
void center() { positionAt(0); }
void center() override { positionAt(0); }
void loadConfig() override;
void handleKeyDown(StellaKey key, StellaMod mod) override;
void handleCommand(CommandSender* sender, int cmd, int data, int id) override;

View File

@ -85,11 +85,11 @@ class LauncherDialog : public Dialog
void reload() { updateListing(); }
private:
void center() { positionAt(0); }
void center() override { positionAt(0); }
void handleKeyDown(StellaKey key, StellaMod mod) override;
void handleMouseDown(int x, int y, MouseButton b, int clickCount) override;
void handleCommand(CommandSender* sender, int cmd, int data, int id) override;
void handleJoyDown(int stick, int button);
void handleJoyDown(int stick, int button) override;
Event::Type getJoyAxisEvent(int stick, int axis, int value) override;
void loadConfig() override;