[Scummvm-cvs-logs] SF.net SVN: scummvm: [26595] scummvm/trunk/engines/gob
drmccoy at users.sourceforge.net
drmccoy at users.sourceforge.net
Wed Apr 25 21:52:27 CEST 2007
Revision: 26595
http://scummvm.svn.sourceforge.net/scummvm/?rev=26595&view=rev
Author: drmccoy
Date: 2007-04-25 12:52:26 -0700 (Wed, 25 Apr 2007)
Log Message:
-----------
Removed some more superfluous semicolons in the gob engine
Modified Paths:
--------------
scummvm/trunk/engines/gob/draw.h
scummvm/trunk/engines/gob/goblin.h
scummvm/trunk/engines/gob/init.h
scummvm/trunk/engines/gob/inter.h
scummvm/trunk/engines/gob/saveload.h
scummvm/trunk/engines/gob/sound.h
scummvm/trunk/engines/gob/video.h
Modified: scummvm/trunk/engines/gob/draw.h
===================================================================
--- scummvm/trunk/engines/gob/draw.h 2007-04-25 19:31:23 UTC (rev 26594)
+++ scummvm/trunk/engines/gob/draw.h 2007-04-25 19:52:26 UTC (rev 26595)
@@ -191,7 +191,7 @@
virtual void initScreen();
Draw_Bargon(GobEngine *vm);
- virtual ~Draw_Bargon() {};
+ virtual ~Draw_Bargon() {}
};
// Draw operations
Modified: scummvm/trunk/engines/gob/goblin.h
===================================================================
--- scummvm/trunk/engines/gob/goblin.h 2007-04-25 19:31:23 UTC (rev 26594)
+++ scummvm/trunk/engines/gob/goblin.h 2007-04-25 19:52:26 UTC (rev 26595)
@@ -306,7 +306,7 @@
int16 index, int16 x, int16 y, int16 state);
Goblin_v3(GobEngine *vm);
- virtual ~Goblin_v3() {};
+ virtual ~Goblin_v3() {}
protected:
virtual bool isMovement(int8 state);
Modified: scummvm/trunk/engines/gob/init.h
===================================================================
--- scummvm/trunk/engines/gob/init.h 2007-04-25 19:31:23 UTC (rev 26594)
+++ scummvm/trunk/engines/gob/init.h 2007-04-25 19:52:26 UTC (rev 26595)
@@ -66,7 +66,7 @@
virtual void initVideo();
Init_v3(GobEngine *vm);
- virtual ~Init_v3() {};
+ virtual ~Init_v3() {}
};
} // End of namespace Gob
Modified: scummvm/trunk/engines/gob/inter.h
===================================================================
--- scummvm/trunk/engines/gob/inter.h 2007-04-25 19:31:23 UTC (rev 26594)
+++ scummvm/trunk/engines/gob/inter.h 2007-04-25 19:52:26 UTC (rev 26595)
@@ -108,7 +108,7 @@
class Inter_v1 : public Inter {
public:
Inter_v1(GobEngine *vm);
- virtual ~Inter_v1() {};
+ virtual ~Inter_v1() {}
virtual int16 loadSound(int16 slot);
virtual void animPalette();
@@ -303,7 +303,7 @@
class Inter_v2 : public Inter_v1 {
public:
Inter_v2(GobEngine *vm);
- virtual ~Inter_v2() {};
+ virtual ~Inter_v2() {}
virtual int16 loadSound(int16 search);
virtual void animPalette();
@@ -394,7 +394,7 @@
class Inter_Bargon : public Inter_v2 {
public:
Inter_Bargon(GobEngine *vm);
- virtual ~Inter_Bargon() {};
+ virtual ~Inter_Bargon() {}
protected:
typedef void (Inter_Bargon::*OpcodeDrawProcBargon)();
@@ -440,7 +440,7 @@
class Inter_v3 : public Inter_v2 {
public:
Inter_v3(GobEngine *vm);
- virtual ~Inter_v3() {};
+ virtual ~Inter_v3() {}
protected:
typedef void (Inter_v3::*OpcodeDrawProcV3)();
Modified: scummvm/trunk/engines/gob/saveload.h
===================================================================
--- scummvm/trunk/engines/gob/saveload.h 2007-04-25 19:31:23 UTC (rev 26594)
+++ scummvm/trunk/engines/gob/saveload.h 2007-04-25 19:52:26 UTC (rev 26595)
@@ -114,7 +114,7 @@
virtual SaveType getSaveType(const char *fileName);
SaveLoad_v2(GobEngine *vm, const char *targetName);
- virtual ~SaveLoad_v2() {};
+ virtual ~SaveLoad_v2() {}
protected:
virtual uint32 getSaveGameSize();
@@ -135,7 +135,7 @@
virtual SaveType getSaveType(const char *fileName);
SaveLoad_v3(GobEngine *vm, const char *targetName);
- virtual ~SaveLoad_v3() {};
+ virtual ~SaveLoad_v3() {}
protected:
bool _useScreenshots;
Modified: scummvm/trunk/engines/gob/sound.h
===================================================================
--- scummvm/trunk/engines/gob/sound.h 2007-04-25 19:31:23 UTC (rev 26594)
+++ scummvm/trunk/engines/gob/sound.h 2007-04-25 19:52:26 UTC (rev 26595)
@@ -51,7 +51,7 @@
byte *getData() { return _dataPtr; }
uint32 size() { return _size; }
bool empty() { return !_dataPtr; }
- bool isId(int16 id) { return _dataPtr && _id == id; };
+ bool isId(int16 id) { return _dataPtr && _id == id; }
SoundType getType() { return _type; }
void set(SoundType type, SoundSource src, byte *data, uint32 dSize);
Modified: scummvm/trunk/engines/gob/video.h
===================================================================
--- scummvm/trunk/engines/gob/video.h 2007-04-25 19:31:23 UTC (rev 26594)
+++ scummvm/trunk/engines/gob/video.h 2007-04-25 19:52:26 UTC (rev 26595)
@@ -149,7 +149,7 @@
SurfaceDesc *destDesc) = 0;
Video(class GobEngine *vm);
- virtual ~Video() {};
+ virtual ~Video() {}
protected:
class VideoDriver *_videoDriver;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list