From b0affe5bf2c7240afb8f16c9b9476a049941439f Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Wed, 28 Mar 2018 12:47:23 +0200 Subject: GUI: Added override specifiers --- gui/console.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'gui/console.h') diff --git a/gui/console.h b/gui/console.h index 04ad5526a6..5cd0e43e56 100644 --- a/gui/console.h +++ b/gui/console.h @@ -130,15 +130,15 @@ protected: public: ConsoleDialog(float widthPercent, float heightPercent); - void open(); - void close(); + void open() override; + void close() override; void drawDialog(DrawLayer layerToDraw) override; - void handleTickle(); - void reflowLayout(); - void handleMouseWheel(int x, int y, int direction); - void handleKeyDown(Common::KeyState state); - void handleCommand(CommandSender *sender, uint32 cmd, uint32 data); + void handleTickle() override; + void reflowLayout() override; + void handleMouseWheel(int x, int y, int direction) override; + void handleKeyDown(Common::KeyState state) override; + void handleCommand(CommandSender *sender, uint32 cmd, uint32 data) override; int printFormat(int dummy, const char *format, ...) GCC_PRINTF(3, 4); int vprintFormat(int dummy, const char *format, va_list argptr); -- cgit v1.2.3