GUI: Added override clauses

This commit is contained in:
Eugene Sandulenko 2018-03-28 12:28:12 +02:00
parent 067d4779fa
commit 283f7485e3

View file

@ -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