aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/talk.h
diff options
context:
space:
mode:
authorStrangerke2011-07-31 00:52:35 +0200
committerStrangerke2011-07-31 00:52:35 +0200
commit55df4d063596c774969a8d3537c999a95b7dfcc0 (patch)
treed1f0f24affff10e89b8a9d4d8a55d31f20d73171 /engines/cge/talk.h
parentb53ffa8f2c31d27ac5a7b3fd48143102be6ff4ff (diff)
downloadscummvm-rg350-55df4d063596c774969a8d3537c999a95b7dfcc0.tar.gz
scummvm-rg350-55df4d063596c774969a8d3537c999a95b7dfcc0.tar.bz2
scummvm-rg350-55df4d063596c774969a8d3537c999a95b7dfcc0.zip
CGE: Rename some class members, various clean up
Diffstat (limited to 'engines/cge/talk.h')
-rw-r--r--engines/cge/talk.h10
1 files changed, 5 insertions, 5 deletions
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;
};