aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/parser.h
diff options
context:
space:
mode:
authorMax Horn2008-05-11 22:08:32 +0000
committerMax Horn2008-05-11 22:08:32 +0000
commit6e3c92e2392eb429723e23a4c782e0c1a7037b18 (patch)
tree8eaf0201e5850176ec94c915c1e6ddd744d5982d /engines/parallaction/parser.h
parent9390c4021a7df308fc67873c89550e462d74d4f7 (diff)
downloadscummvm-rg350-6e3c92e2392eb429723e23a4c782e0c1a7037b18.tar.gz
scummvm-rg350-6e3c92e2392eb429723e23a4c782e0c1a7037b18.tar.bz2
scummvm-rg350-6e3c92e2392eb429723e23a4c782e0c1a7037b18.zip
Renamed some parallaction member vars to have a leading underscore (besides being part of our code formatting conventions, this fixes various name clash warnings)
svn-id: r32041
Diffstat (limited to 'engines/parallaction/parser.h')
-rw-r--r--engines/parallaction/parser.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/parallaction/parser.h b/engines/parallaction/parser.h
index 1af8cafc38..d600f9eb9d 100644
--- a/engines/parallaction/parser.h
+++ b/engines/parallaction/parser.h
@@ -123,8 +123,8 @@ class LocationParser_ns {
protected:
Parallaction_ns* _vm;
- Script *script;
- Parser *parser;
+ Script *_script;
+ Parser *_parser;
Table *_zoneTypeNames;
Table *_zoneFlagNames;
@@ -315,11 +315,11 @@ public:
class ProgramParser_ns {
protected:
- Parser *parser;
+ Parser *_parser;
Parallaction_ns *_vm;
- Script *script;
- ProgramPtr program;
+ Script *_script;
+ ProgramPtr _program;
// program parser
OpcodeSet _instructionParsers;