diff options
author | Eugene Sandulenko | 2018-03-28 12:28:12 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2018-03-28 12:28:12 +0200 |
commit | 283f7485e3839c9db410a0e8a8c9e0da355f36b3 (patch) | |
tree | 8b458d91a0575bf5255a1080a91813ddecc70ca8 /gui | |
parent | 067d4779fac274986e926710015e19084b977e55 (diff) | |
download | scummvm-rg350-283f7485e3839c9db410a0e8a8c9e0da355f36b3.tar.gz scummvm-rg350-283f7485e3839c9db410a0e8a8c9e0da355f36b3.tar.bz2 scummvm-rg350-283f7485e3839c9db410a0e8a8c9e0da355f36b3.zip |
GUI: Added override clauses
Diffstat (limited to 'gui')
-rw-r--r-- | gui/about.h | 14 |
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 |