aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gui/about.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/gui/about.h b/gui/about.h
index b6510772bf..a6b13cd1da 100644
--- a/gui/about.h
+++ b/gui/about.h
@@ -46,15 +46,15 @@ protected:
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