[Scummvm-cvs-logs] scummvm master -> e4027040a807f3dee5c902d03971162498c636fe

wjp wjp at usecode.org
Sat Dec 26 21:31:34 CET 2015


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:
e4027040a8 LAB: Remove useless virtual keywords


Commit: e4027040a807f3dee5c902d03971162498c636fe
    https://github.com/scummvm/scummvm/commit/e4027040a807f3dee5c902d03971162498c636fe
Author: Willem Jan Palenstijn (wjp at usecode.org)
Date: 2015-12-26T21:30:55+01:00

Commit Message:
LAB: Remove useless virtual keywords

Changed paths:
    engines/lab/anim.h
    engines/lab/image.h
    engines/lab/tilepuzzle.h



diff --git a/engines/lab/anim.h b/engines/lab/anim.h
index e9bc858..0118403 100644
--- a/engines/lab/anim.h
+++ b/engines/lab/anim.h
@@ -70,7 +70,7 @@ private:
 
 public:
 	Anim(LabEngine *vm);
-	virtual ~Anim();
+	~Anim();
 
 	char _diffPalette[256 * 3];
 	bool _waitForEffect; // Wait for each sound effect to finish before continuing.
diff --git a/engines/lab/image.h b/engines/lab/image.h
index 8c28f63..eaad751 100644
--- a/engines/lab/image.h
+++ b/engines/lab/image.h
@@ -50,7 +50,7 @@ public:
 	Image(LabEngine *vm) : _width(0), _height(0), _imageData(nullptr), _vm(vm) {}
 	Image(int w, int h, byte *d, LabEngine *vm) : _width(w), _height(h), _imageData(d), _vm(vm) {}
 	Image(Common::File *s, LabEngine *vm);
-	virtual ~Image();
+	~Image();
 
 	/**
 	 * Draws an image to the screen.
diff --git a/engines/lab/tilepuzzle.h b/engines/lab/tilepuzzle.h
index dd4abba..948df9d 100644
--- a/engines/lab/tilepuzzle.h
+++ b/engines/lab/tilepuzzle.h
@@ -47,7 +47,7 @@ private:
 
 public:
 	TilePuzzle(LabEngine *vm);
-	virtual ~TilePuzzle();
+	~TilePuzzle();
 
 	/**
 	 * Processes mouse clicks and changes the combination.






More information about the Scummvm-git-logs mailing list