diff options
| author | Eugene Sandulenko | 2018-03-28 12:47:23 +0200 | 
|---|---|---|
| committer | Eugene Sandulenko | 2018-03-28 12:47:23 +0200 | 
| commit | b0affe5bf2c7240afb8f16c9b9476a049941439f (patch) | |
| tree | e0232e8cd29ef64531f4395c7f605a97e111598e /gui/widgets/popup.cpp | |
| parent | ea7f92bb218f3b00e89fc8a3361ed3e3069af789 (diff) | |
| download | scummvm-rg350-b0affe5bf2c7240afb8f16c9b9476a049941439f.tar.gz scummvm-rg350-b0affe5bf2c7240afb8f16c9b9476a049941439f.tar.bz2 scummvm-rg350-b0affe5bf2c7240afb8f16c9b9476a049941439f.zip | |
GUI: Added override specifiers
Diffstat (limited to 'gui/widgets/popup.cpp')
| -rw-r--r-- | gui/widgets/popup.cpp | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/gui/widgets/popup.cpp b/gui/widgets/popup.cpp index 40af769a34..65c9dea605 100644 --- a/gui/widgets/popup.cpp +++ b/gui/widgets/popup.cpp @@ -50,10 +50,10 @@ public:  	void drawDialog(DrawLayer layerToDraw) override; -	void handleMouseUp(int x, int y, int button, int clickCount); -	void handleMouseWheel(int x, int y, int direction);	// Scroll through entries with scroll wheel -	void handleMouseMoved(int x, int y, int button);	// Redraw selections depending on mouse position -	void handleKeyDown(Common::KeyState state);	// Scroll through entries with arrow keys etc. +	void handleMouseUp(int x, int y, int button, int clickCount) override; +	void handleMouseWheel(int x, int y, int direction) override;	// Scroll through entries with scroll wheel +	void handleMouseMoved(int x, int y, int button) override;	// Redraw selections depending on mouse position +	void handleKeyDown(Common::KeyState state) override;	// Scroll through entries with arrow keys etc.  protected:  	void drawMenuEntry(int entry, bool hilite); | 
