[Scummvm-git-logs] scummvm master -> d3b6f72d3846a49c2c02aacd50efc5dc60c8c170

sev- noreply at scummvm.org
Thu Jan 9 09:02:21 UTC 2025


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
d3b6f72d38 SCUMM: Added missing override keywords


Commit: d3b6f72d3846a49c2c02aacd50efc5dc60c8c170
    https://github.com/scummvm/scummvm/commit/d3b6f72d3846a49c2c02aacd50efc5dc60c8c170
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-01-09T10:01:58+01:00

Commit Message:
SCUMM: Added missing override keywords

Changed paths:
    engines/scumm/macgui/macgui_impl.h
    engines/scumm/macgui/macgui_indy3.h


diff --git a/engines/scumm/macgui/macgui_impl.h b/engines/scumm/macgui/macgui_impl.h
index 807b7aa97eb..d5a5ed455f7 100644
--- a/engines/scumm/macgui/macgui_impl.h
+++ b/engines/scumm/macgui/macgui_impl.h
@@ -347,7 +347,7 @@ public:
 
 		void draw(bool drawFocused = false) override;
 
-		bool handleMouseUp(Common::Event &event) { return true; }
+		bool handleMouseUp(Common::Event &event) override { return true; }
 	};
 
 	class MacCheckbox : public MacWidget {
diff --git a/engines/scumm/macgui/macgui_indy3.h b/engines/scumm/macgui/macgui_indy3.h
index b35b6ec9864..d32eaae50c5 100644
--- a/engines/scumm/macgui/macgui_indy3.h
+++ b/engines/scumm/macgui/macgui_indy3.h
@@ -221,7 +221,7 @@ private:
 
 			bool handleEvent(Common::Event &event) override;
 			bool handleMouseHeld(Common::Point &pressed, Common::Point &held) override;
-			void timeOut();
+			void timeOut() override;
 
 			void draw() override;
 		};
@@ -245,7 +245,7 @@ private:
 			void reset() override;
 
 			bool handleEvent(Common::Event &event) override;
-			void timeOut();
+			void timeOut() override;
 
 			void draw() override;
 		};




More information about the Scummvm-git-logs mailing list