[Scummvm-git-logs] scummvm master -> 5fbb4fc6a02855492d8e0ebc89911827c6517d84

digitall dgturner at iee.org
Mon Jan 16 10:51:13 CET 2017


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:
5fbb4fc6a0 SWORD25: Fix Warnings about Copy Constructor Failing to Call Base Class.


Commit: 5fbb4fc6a02855492d8e0ebc89911827c6517d84
    https://github.com/scummvm/scummvm/commit/5fbb4fc6a02855492d8e0ebc89911827c6517d84
Author: D G Turner (digitall at scummvm.org)
Date: 2017-01-16T09:57:50Z

Commit Message:
SWORD25: Fix Warnings about Copy Constructor Failing to Call Base Class.

Changed paths:
    engines/sword25/gfx/image/renderedimage.h


diff --git a/engines/sword25/gfx/image/renderedimage.h b/engines/sword25/gfx/image/renderedimage.h
index e4d573f..bd324a2 100644
--- a/engines/sword25/gfx/image/renderedimage.h
+++ b/engines/sword25/gfx/image/renderedimage.h
@@ -45,7 +45,7 @@ namespace Sword25 {
 
 class RenderedImage : public Image {
 private:
-	RenderedImage(const RenderedImage &) : _doCleanup(false) {}
+	RenderedImage(const RenderedImage &) : Image(), _doCleanup(false) {}
 	RenderedImage &operator=(const RenderedImage &) { return *this; }
 public:
 	RenderedImage(const Common::String &filename, bool &result);





More information about the Scummvm-git-logs mailing list