[Scummvm-git-logs] scummvm master -> 3bfb15bde4fe5f638a793088606a41941af63a68

sev- sev at scummvm.org
Fri Aug 14 07:38:40 UTC 2020


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:
3bfb15bde4 DIRECTOR: Added override keywords


Commit: 3bfb15bde4fe5f638a793088606a41941af63a68
    https://github.com/scummvm/scummvm/commit/3bfb15bde4fe5f638a793088606a41941af63a68
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-08-14T09:38:15+02:00

Commit Message:
DIRECTOR: Added override keywords

Changed paths:
    engines/director/window.h


diff --git a/engines/director/window.h b/engines/director/window.h
index 4a0ea97fa8..25969b20b1 100644
--- a/engines/director/window.h
+++ b/engines/director/window.h
@@ -117,7 +117,7 @@ class Window : public Graphics::MacWindow, public Object<Window> {
 	Movie *getCurrentMovie() const { return _currentMovie; }
 	Common::String getCurrentPath() const { return _currentPath; }
 
-	virtual void setVisible(bool visible, bool silent = false);
+	virtual void setVisible(bool visible, bool silent = false) override;
 	bool setNextMovie(Common::String &movieFilenameRaw);
 
 	void setWindowType(int type) { _windowType = type; updateBorderType(); }
@@ -130,7 +130,7 @@ class Window : public Graphics::MacWindow, public Object<Window> {
 	bool step();
 
 	// events.cpp
-	virtual bool processEvent(Common::Event &event);
+	virtual bool processEvent(Common::Event &event) override;
 
 	// tests.cpp
 	Common::HashMap<Common::String, Movie *> *scanMovies(const Common::String &folder);




More information about the Scummvm-git-logs mailing list