aboutsummaryrefslogtreecommitdiff
path: root/gui/about.h
diff options
context:
space:
mode:
authorEugene Sandulenko2018-03-28 12:28:12 +0200
committerEugene Sandulenko2018-03-28 12:28:12 +0200
commit283f7485e3839c9db410a0e8a8c9e0da355f36b3 (patch)
tree8b458d91a0575bf5255a1080a91813ddecc70ca8 /gui/about.h
parent067d4779fac274986e926710015e19084b977e55 (diff)
downloadscummvm-rg350-283f7485e3839c9db410a0e8a8c9e0da355f36b3.tar.gz
scummvm-rg350-283f7485e3839c9db410a0e8a8c9e0da355f36b3.tar.bz2
scummvm-rg350-283f7485e3839c9db410a0e8a8c9e0da355f36b3.zip
GUI: Added override clauses
Diffstat (limited to 'gui/about.h')
-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