From 00b9bc7b36682365e64d710b4e843659bef373da Mon Sep 17 00:00:00 2001 From: Max Horn Date: Wed, 25 Apr 2007 19:31:23 +0000 Subject: Removing lots of superfluous semicola (see mail by David Weinehall on scummvm-devel) svn-id: r26594 --- graphics/font.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'graphics/font.h') 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; -- cgit v1.2.3