GRAPHICS: MACGUI: Fix warnings

This commit is contained in:
Eugene Sandulenko 2022-08-05 20:20:53 +02:00
parent c2d4c92241
commit 4bce66edbb
No known key found for this signature in database
GPG Key ID: 014D387312D34F08

View File

@ -33,14 +33,14 @@ public:
MacTextWindow(MacWindowManager *wm, const Font *font, int fgcolor, int bgcolor, int maxWidth, TextAlign textAlignment, MacMenu *menu, bool cursorHandler = true);
virtual ~MacTextWindow();
virtual void resize(int w, int h, bool inner = false);
virtual void resize(int w, int h, bool inner = false) override;
void setDimensions(const Common::Rect &r) override;
virtual bool processEvent(Common::Event &event);
virtual bool processEvent(Common::Event &event) override;
virtual bool draw(ManagedSurface *g, bool forceRedraw = false);
virtual bool draw(bool forceRedraw = false);
virtual void blit(ManagedSurface *g, Common::Rect &dest);
virtual bool draw(ManagedSurface *g, bool forceRedraw = false) override;
virtual bool draw(bool forceRedraw = false) override;
virtual void blit(ManagedSurface *g, Common::Rect &dest) override;
void setTextWindowFont(const MacFont *macFont);
const MacFont *getTextWindowFont();