aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/base/font/base_font_storage.h
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2012-07-21 21:01:47 +0200
committerEinar Johan Trøan Sømåen2012-07-21 21:01:47 +0200
commitb5a07fef8ebf29f7f44b15d9b34799c7e115fdad (patch)
tree76599c7b51aa6ad0447cb6ff6847f9eba54a679a /engines/wintermute/base/font/base_font_storage.h
parent2e82471240804df65acdf51c43ea044cbb81ae68 (diff)
downloadscummvm-rg350-b5a07fef8ebf29f7f44b15d9b34799c7e115fdad.tar.gz
scummvm-rg350-b5a07fef8ebf29f7f44b15d9b34799c7e115fdad.tar.bz2
scummvm-rg350-b5a07fef8ebf29f7f44b15d9b34799c7e115fdad.zip
WINTERMUTE: Get rid of the C-prefix for class-definitions.
Diffstat (limited to 'engines/wintermute/base/font/base_font_storage.h')
-rw-r--r--engines/wintermute/base/font/base_font_storage.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/engines/wintermute/base/font/base_font_storage.h b/engines/wintermute/base/font/base_font_storage.h
index 7c88e9a2f4..2c9c6817c3 100644
--- a/engines/wintermute/base/font/base_font_storage.h
+++ b/engines/wintermute/base/font/base_font_storage.h
@@ -36,17 +36,17 @@
namespace WinterMute {
-class CBFont;
+class BaseFont;
-class CBFontStorage : public CBBase {
+class BaseFontStorage : public BaseClass {
public:
- DECLARE_PERSISTENT(CBFontStorage, CBBase)
+ DECLARE_PERSISTENT(BaseFontStorage, BaseClass)
bool cleanup(bool warn = false);
- bool removeFont(CBFont *font);
- CBFont *addFont(const char *filename);
- CBFontStorage(CBGame *inGame);
- virtual ~CBFontStorage();
- CBArray<CBFont *, CBFont *> _fonts;
+ bool removeFont(BaseFont *font);
+ BaseFont *addFont(const char *filename);
+ BaseFontStorage(BaseGame *inGame);
+ virtual ~BaseFontStorage();
+ BaseArray<BaseFont *, BaseFont *> _fonts;
bool initLoop();
};