GUI: Added override clauses
This commit is contained in:
parent
067d4779fa
commit
283f7485e3
1 changed files with 7 additions and 7 deletions
14
gui/about.h
14
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue