diff options
author | Johannes Schickel | 2010-07-17 00:05:27 +0000 |
---|---|---|
committer | Johannes Schickel | 2010-07-17 00:05:27 +0000 |
commit | 83e2aa236092120bf03efbf38558f69719dda11a (patch) | |
tree | fbf02bacc3c06fb0749b1c6530fa0e66d5f13220 /engines/sci/graphics | |
parent | ddb364412e3286eb68479285abc567351f4b5b45 (diff) | |
download | scummvm-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.h | 16 |
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) {} }; |