mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
GRAPHICS: MACGUI: Fix warnings
This commit is contained in:
parent
c2d4c92241
commit
4bce66edbb
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user