Skip to content

Commit

Permalink
GUI: Added override clauses
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Mar 28, 2018
1 parent 067d477 commit 283f748
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions gui/about.h
Expand Up @@ -46,15 +46,15 @@ class AboutDialog : public Dialog {
public:
AboutDialog();

void open();
void close();
void open() override;
void close() override;
void drawDialog(DrawLayer layerToDraw) override;
void handleTickle();
void handleMouseUp(int x, int y, int button, int clickCount);
void handleKeyDown(Common::KeyState state);
void handleKeyUp(Common::KeyState state);
void handleTickle() override;
void handleMouseUp(int x, int y, int button, int clickCount) override;
void handleKeyDown(Common::KeyState state) override;
void handleKeyUp(Common::KeyState state) override;

void reflowLayout();
void reflowLayout() override;
};

} // End of namespace GUI
Expand Down

0 comments on commit 283f748

Please sign in to comment.