aboutsummaryrefslogtreecommitdiff
path: root/gui/console.h
diff options
context:
space:
mode:
authorEugene Sandulenko2018-03-28 12:47:23 +0200
committerEugene Sandulenko2018-03-28 12:47:23 +0200
commitb0affe5bf2c7240afb8f16c9b9476a049941439f (patch)
treee0232e8cd29ef64531f4395c7f605a97e111598e /gui/console.h
parentea7f92bb218f3b00e89fc8a3361ed3e3069af789 (diff)
downloadscummvm-rg350-b0affe5bf2c7240afb8f16c9b9476a049941439f.tar.gz
scummvm-rg350-b0affe5bf2c7240afb8f16c9b9476a049941439f.tar.bz2
scummvm-rg350-b0affe5bf2c7240afb8f16c9b9476a049941439f.zip
GUI: Added override specifiers
Diffstat (limited to 'gui/console.h')
-rw-r--r--gui/console.h14
1 files changed, 7 insertions, 7 deletions
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);