From 55df4d063596c774969a8d3537c999a95b7dfcc0 Mon Sep 17 00:00:00 2001 From: Strangerke Date: Sun, 31 Jul 2011 00:52:35 +0200 Subject: CGE: Rename some class members, various clean up --- engines/cge/talk.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'engines/cge/talk.h') diff --git a/engines/cge/talk.h b/engines/cge/talk.h index d9c29261f6..71db57c887 100644 --- a/engines/cge/talk.h +++ b/engines/cge/talk.h @@ -66,10 +66,10 @@ public: class Talk : public Sprite { protected: TextBoxStyle _mode; - BMP_PTR *_ts; + BitmapPtr *_ts; Bitmap *box(uint16 w, uint16 h); public: - Talk(CGEEngine *vm, const char *tx, TextBoxStyle mode); + Talk(CGEEngine *vm, const char *text, TextBoxStyle mode); Talk(CGEEngine *vm); //~TALK(); @@ -77,7 +77,7 @@ public: static void init(); static void deinit(); - virtual void update(const char *tx); + virtual void update(const char *text); virtual void update() {} void putLine(int line, const char *text); private: @@ -85,10 +85,10 @@ private: }; class InfoLine : public Talk { - const char *_oldTxt; + const char *_oldText; public: InfoLine(CGEEngine *vm, uint16 wid); - void update(const char *tx); + void update(const char *text); private: CGEEngine *_vm; }; -- cgit v1.2.3