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 /common | |
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 'common')
-rw-r--r-- | common/system.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/common/system.h b/common/system.h index 4f2f1c37fe..c1ff066095 100644 --- a/common/system.h +++ b/common/system.h @@ -352,14 +352,14 @@ public: * of the relevant methods simply do nothing. * @see endGFXTransaction */ - virtual void beginGFXTransaction() {}; + virtual void beginGFXTransaction() {} /** * End (and thereby commit) the current GFX transaction. * @see beginGFXTransaction */ - virtual void endGFXTransaction() {}; + virtual void endGFXTransaction() {} /** @@ -656,7 +656,7 @@ public: * @see setPalette * @see kFeatureCursorHasPalette */ - virtual void setCursorPalette(const byte *colors, uint start, uint num) {}; + virtual void setCursorPalette(const byte *colors, uint start, uint num) {} /** * Disable or enable cursor palette. @@ -668,7 +668,7 @@ public: * @see setPalette * @see kFeatureCursorHasPalette */ - virtual void disableCursorPalette(bool disable) {}; + virtual void disableCursorPalette(bool disable) {} //@} |