aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/ui/ui_tiled_image.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/ui/ui_tiled_image.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/ui/ui_tiled_image.h')
-rw-r--r--engines/wintermute/ui/ui_tiled_image.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/wintermute/ui/ui_tiled_image.h b/engines/wintermute/ui/ui_tiled_image.h
index 79adf7caac..2d7068e7cd 100644
--- a/engines/wintermute/ui/ui_tiled_image.h
+++ b/engines/wintermute/ui/ui_tiled_image.h
@@ -34,19 +34,19 @@
#include "common/rect.h"
namespace WinterMute {
-class CBSubFrame;
-class CUITiledImage : public CBObject {
+class BaseSubFrame;
+class UITiledImage : public BaseObject {
public:
- DECLARE_PERSISTENT(CUITiledImage, CBObject)
+ DECLARE_PERSISTENT(UITiledImage, BaseObject)
void correctSize(int *width, int *height);
bool loadFile(const char *filename);
bool loadBuffer(byte *buffer, bool complete = true);
- virtual bool saveAsText(CBDynBuffer *buffer, int indent);
+ virtual bool saveAsText(BaseDynamicBuffer *buffer, int indent);
bool display(int x, int y, int width, int height);
- CUITiledImage(CBGame *inGame = NULL);
- virtual ~CUITiledImage();
- CBSubFrame *_image;
+ UITiledImage(BaseGame *inGame = NULL);
+ virtual ~UITiledImage();
+ BaseSubFrame *_image;
Rect32 _upLeft;
Rect32 _upMiddle;
Rect32 _upRight;