[Scummvm-git-logs] scummvm master -> 4bce66edbbaa0ced1b724f82548fcbf5977812dd
sev-
noreply at scummvm.org
Fri Aug 5 18:21:12 UTC 2022
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
c2d4c92241 WAGE: Fix warning
4bce66edbb GRAPHICS: MACGUI: Fix warnings
Commit: c2d4c922417404a73c0bedfd887b032d80a166ab
https://github.com/scummvm/scummvm/commit/c2d4c922417404a73c0bedfd887b032d80a166ab
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2022-08-05T20:20:26+02:00
Commit Message:
WAGE: Fix warning
Changed paths:
engines/wage/wage.h
diff --git a/engines/wage/wage.h b/engines/wage/wage.h
index e4d8d5c98a3..1e332bb66b6 100644
--- a/engines/wage/wage.h
+++ b/engines/wage/wage.h
@@ -60,7 +60,7 @@
struct ADGameDescription;
namespace Common {
-class Event;
+struct Event;
}
namespace Graphics {
Commit: 4bce66edbbaa0ced1b724f82548fcbf5977812dd
https://github.com/scummvm/scummvm/commit/4bce66edbbaa0ced1b724f82548fcbf5977812dd
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2022-08-05T20:20:53+02:00
Commit Message:
GRAPHICS: MACGUI: Fix warnings
Changed paths:
graphics/macgui/mactextwindow.h
diff --git a/graphics/macgui/mactextwindow.h b/graphics/macgui/mactextwindow.h
index e6dd57b8178..7ee7d67515f 100644
--- a/graphics/macgui/mactextwindow.h
+++ b/graphics/macgui/mactextwindow.h
@@ -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();
More information about the Scummvm-git-logs
mailing list