aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/parallaction.h
diff options
context:
space:
mode:
authorNicola Mettifogo2008-12-13 03:37:43 +0000
committerNicola Mettifogo2008-12-13 03:37:43 +0000
commitb3475d81787b08178c7ea413717796d987f9061c (patch)
tree41569a0662636f68ab4390ace32e7b16c9a4a5b8 /engines/parallaction/parallaction.h
parent6724097f674c100c20a42a030bb597aa080ad339 (diff)
downloadscummvm-rg350-b3475d81787b08178c7ea413717796d987f9061c.tar.gz
scummvm-rg350-b3475d81787b08178c7ea413717796d987f9061c.tar.bz2
scummvm-rg350-b3475d81787b08178c7ea413717796d987f9061c.zip
* Replaced char* with Common::String in the parser.
* Enforced const-correctness on related routines. svn-id: r35326
Diffstat (limited to 'engines/parallaction/parallaction.h')
-rw-r--r--engines/parallaction/parallaction.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/parallaction/parallaction.h b/engines/parallaction/parallaction.h
index f9d9265ac6..659b52d17a 100644
--- a/engines/parallaction/parallaction.h
+++ b/engines/parallaction/parallaction.h
@@ -131,8 +131,8 @@ struct Location {
CommandList _aCommands;
CommandList _commands;
- char *_comment;
- char *_endComment;
+ Common::String _comment;
+ Common::String _endComment;
ZoneList _zones;
AnimationList _animations;
@@ -316,7 +316,7 @@ protected:
void doLocationEnterTransition();
void allocateLocationSlot(const char *name);
void finalizeLocationParsing();
- void showLocationComment(const char *text, bool end);
+ void showLocationComment(const Common::String &text, bool end);
void setupBalloonManager();
public: