aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics
diff options
context:
space:
mode:
authorJohannes Schickel2010-07-17 00:05:27 +0000
committerJohannes Schickel2010-07-17 00:05:27 +0000
commit83e2aa236092120bf03efbf38558f69719dda11a (patch)
treefbf02bacc3c06fb0749b1c6530fa0e66d5f13220 /engines/sci/graphics
parentddb364412e3286eb68479285abc567351f4b5b45 (diff)
downloadscummvm-rg350-83e2aa236092120bf03efbf38558f69719dda11a.tar.gz
scummvm-rg350-83e2aa236092120bf03efbf38558f69719dda11a.tar.bz2
scummvm-rg350-83e2aa236092120bf03efbf38558f69719dda11a.zip
Remove extra ";" in class declarations.
svn-id: r50955
Diffstat (limited to 'engines/sci/graphics')
-rw-r--r--engines/sci/graphics/font.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/engines/sci/graphics/font.h b/engines/sci/graphics/font.h
index 90f18e426d..b9bee0fa9e 100644
--- a/engines/sci/graphics/font.h
+++ b/engines/sci/graphics/font.h
@@ -32,14 +32,14 @@ namespace Sci {
class GfxFont {
public:
- GfxFont() {};
- virtual ~GfxFont() {};
-
- virtual GuiResourceId getResourceId() { return 0; };
- virtual byte getHeight() { return 0; };
- virtual bool isDoubleByte(uint16 chr) { return false; };
- virtual byte getCharWidth(uint16 chr) { return 0; };
- virtual void draw(uint16 chr, int16 top, int16 left, byte color, bool greyedOutput) {};
+ GfxFont() {}
+ virtual ~GfxFont() {}
+
+ virtual GuiResourceId getResourceId() { return 0; }
+ virtual byte getHeight() { return 0; }
+ virtual bool isDoubleByte(uint16 chr) { return false; }
+ virtual byte getCharWidth(uint16 chr) { return 0; }
+ virtual void draw(uint16 chr, int16 top, int16 left, byte color, bool greyedOutput) {}
};