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 /graphics/font.h | |
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 'graphics/font.h')
-rw-r--r-- | graphics/font.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/font.h b/graphics/font.h index 4c271903c5..263bedd96d 100644 --- a/graphics/font.h +++ b/graphics/font.h @@ -81,7 +81,7 @@ public: class ScummFont : public Font { public: virtual int getFontHeight() const { return 8; } - virtual int getMaxCharWidth() const { return 8; }; + virtual int getMaxCharWidth() const { return 8; } virtual int getCharWidth(byte chr) const; virtual void drawChar(Surface *dst, byte chr, int x, int y, uint32 color) const; @@ -126,7 +126,7 @@ public: ~NewFont(); virtual int getFontHeight() const { return desc.height; } - virtual int getMaxCharWidth() const { return desc.maxwidth; }; + virtual int getMaxCharWidth() const { return desc.maxwidth; } virtual int getCharWidth(byte chr) const; virtual void drawChar(Surface *dst, byte chr, int x, int y, uint32 color) const; |