diff options
author | Max Horn | 2007-04-25 19:31:23 +0000 |
---|---|---|
committer | Max Horn | 2007-04-25 19:31:23 +0000 |
commit | 00b9bc7b36682365e64d710b4e843659bef373da (patch) | |
tree | 27f48e6cb51c37d595a6dd04d9fc1d773f4f766c /engines/gob | |
parent | 8306e0ebe5bddd5945bdfb436fcfb7148160e029 (diff) | |
download | scummvm-rg350-00b9bc7b36682365e64d710b4e843659bef373da.tar.gz scummvm-rg350-00b9bc7b36682365e64d710b4e843659bef373da.tar.bz2 scummvm-rg350-00b9bc7b36682365e64d710b4e843659bef373da.zip |
Removing lots of superfluous semicola (see mail by David Weinehall on scummvm-devel)
svn-id: r26594
Diffstat (limited to 'engines/gob')
-rw-r--r-- | engines/gob/draw.h | 6 | ||||
-rw-r--r-- | engines/gob/game.h | 4 | ||||
-rw-r--r-- | engines/gob/goblin.h | 4 | ||||
-rw-r--r-- | engines/gob/init.h | 6 | ||||
-rw-r--r-- | engines/gob/inter.h | 2 | ||||
-rw-r--r-- | engines/gob/mult.h | 2 | ||||
-rw-r--r-- | engines/gob/parse.h | 6 | ||||
-rw-r--r-- | engines/gob/scenery.h | 4 | ||||
-rw-r--r-- | engines/gob/video.h | 4 |
9 files changed, 19 insertions, 19 deletions
diff --git a/engines/gob/draw.h b/engines/gob/draw.h index 8e973a8ee5..106b8c5be0 100644 --- a/engines/gob/draw.h +++ b/engines/gob/draw.h @@ -154,7 +154,7 @@ public: virtual void spriteOperation(int16 operation) = 0; Draw(GobEngine *vm); - virtual ~Draw() {}; + virtual ~Draw() {} protected: GobEngine *_vm; @@ -170,7 +170,7 @@ public: virtual void spriteOperation(int16 operation); Draw_v1(GobEngine *vm); - virtual ~Draw_v1() {}; + virtual ~Draw_v1() {} }; class Draw_v2 : public Draw_v1 { @@ -183,7 +183,7 @@ public: virtual void spriteOperation(int16 operation); Draw_v2(GobEngine *vm); - virtual ~Draw_v2() {}; + virtual ~Draw_v2() {} }; class Draw_Bargon: public Draw_v2 { diff --git a/engines/gob/game.h b/engines/gob/game.h index 244cc1b6e9..349d95ba86 100644 --- a/engines/gob/game.h +++ b/engines/gob/game.h @@ -248,7 +248,7 @@ public: virtual void prepareStart(void); Game_v1(GobEngine *vm); - virtual ~Game_v1() {}; + virtual ~Game_v1() {} protected: virtual void pushCollisions(char all); @@ -276,7 +276,7 @@ public: virtual void prepareStart(void); Game_v2(GobEngine *vm); - virtual ~Game_v2() {}; + virtual ~Game_v2() {} protected: struct CollLast { diff --git a/engines/gob/goblin.h b/engines/gob/goblin.h index f8bddff332..d6e5cdf6d7 100644 --- a/engines/gob/goblin.h +++ b/engines/gob/goblin.h @@ -271,7 +271,7 @@ public: int16 nextAct, int16 framesCount); Goblin_v1(GobEngine *vm); - virtual ~Goblin_v1() {}; + virtual ~Goblin_v1() {} protected: virtual bool isMovement(int8 state) { return false; } @@ -291,7 +291,7 @@ public: int16 nextAct, int16 framesCount); Goblin_v2(GobEngine *vm); - virtual ~Goblin_v2() {}; + virtual ~Goblin_v2() {} protected: virtual bool isMovement(int8 state); diff --git a/engines/gob/init.h b/engines/gob/init.h index d64dcb91a0..61a09c1295 100644 --- a/engines/gob/init.h +++ b/engines/gob/init.h @@ -35,7 +35,7 @@ public: virtual void initVideo() = 0; Init(GobEngine *vm); - virtual ~Init() {}; + virtual ~Init() {} protected: Video::PalDesc *_palDesc; @@ -50,7 +50,7 @@ public: virtual void initVideo(); Init_v1(GobEngine *vm); - virtual ~Init_v1() {}; + virtual ~Init_v1() {} }; class Init_v2 : public Init_v1 { @@ -58,7 +58,7 @@ public: virtual void initVideo(); Init_v2(GobEngine *vm); - virtual ~Init_v2() {}; + virtual ~Init_v2() {} }; class Init_v3 : public Init_v2 { diff --git a/engines/gob/inter.h b/engines/gob/inter.h index cd685bd27e..a684c26af9 100644 --- a/engines/gob/inter.h +++ b/engines/gob/inter.h @@ -61,7 +61,7 @@ public: virtual void animPalette() = 0; Inter(GobEngine *vm); - virtual ~Inter() {}; + virtual ~Inter() {} protected: struct OpFuncParams { diff --git a/engines/gob/mult.h b/engines/gob/mult.h index 7f318e8a7f..4be1290a87 100644 --- a/engines/gob/mult.h +++ b/engines/gob/mult.h @@ -293,7 +293,7 @@ protected: class Mult_v1 : public Mult { public: Mult_v1(GobEngine *vm); - virtual ~Mult_v1() {}; + virtual ~Mult_v1() {} virtual void loadMult(int16 resId); virtual void freeMultKeys(); diff --git a/engines/gob/parse.h b/engines/gob/parse.h index 27a6f50b1c..22853e24f0 100644 --- a/engines/gob/parse.h +++ b/engines/gob/parse.h @@ -36,7 +36,7 @@ public: virtual int16 parseExpr(byte stopToken, byte *resultPtr) = 0; Parse(GobEngine *vm); - virtual ~Parse() {}; + virtual ~Parse() {} protected: enum PointerType { @@ -56,7 +56,7 @@ protected: class Parse_v1 : public Parse { public: Parse_v1(GobEngine *vm); - virtual ~Parse_v1() {}; + virtual ~Parse_v1() {} virtual int16 parseVarIndex(void); virtual int16 parseValExpr(byte stopToken = 99); @@ -66,7 +66,7 @@ public: class Parse_v2 : public Parse_v1 { public: Parse_v2(GobEngine *vm); - virtual ~Parse_v2() {}; + virtual ~Parse_v2() {} virtual int16 parseVarIndex(void); virtual int16 parseValExpr(byte stopToken = 99); diff --git a/engines/gob/scenery.h b/engines/gob/scenery.h index 864b74f18d..365bbd326c 100644 --- a/engines/gob/scenery.h +++ b/engines/gob/scenery.h @@ -156,7 +156,7 @@ public: virtual int16 loadAnim(char search); Scenery_v1(GobEngine *vm); - virtual ~Scenery_v1() {}; + virtual ~Scenery_v1() {} }; class Scenery_v2 : public Scenery_v1 { @@ -164,7 +164,7 @@ public: virtual int16 loadAnim(char search); Scenery_v2(GobEngine *vm); - virtual ~Scenery_v2() {}; + virtual ~Scenery_v2() {} }; } // End of namespace Gob diff --git a/engines/gob/video.h b/engines/gob/video.h index 265392a7a2..3a409b9ea9 100644 --- a/engines/gob/video.h +++ b/engines/gob/video.h @@ -168,7 +168,7 @@ public: int16 x, int16 y, int16 transp, SurfaceDesc *destDesc); Video_v1(GobEngine *vm); - virtual ~Video_v1() {}; + virtual ~Video_v1() {} }; class Video_v2 : public Video_v1 { @@ -177,7 +177,7 @@ public: int16 x, int16 y, int16 transp, SurfaceDesc *destDesc); Video_v2(GobEngine *vm); - virtual ~Video_v2() {}; + virtual ~Video_v2() {} }; class VideoDriver { |