aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/objects/handlers/handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/pink/objects/handlers/handler.h')
-rw-r--r--engines/pink/objects/handlers/handler.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/pink/objects/handlers/handler.h b/engines/pink/objects/handlers/handler.h
index 769a4c3c6a..9d0d29833e 100644
--- a/engines/pink/objects/handlers/handler.h
+++ b/engines/pink/objects/handlers/handler.h
@@ -44,8 +44,8 @@ public:
protected:
void executeSideEffects(Actor *actor);
- Common::Array<Condition*> _conditions;
- Common::Array<SideEffect*> _sideEffects;
+ Array<Condition*> _conditions;
+ Array<SideEffect*> _sideEffects;
};
class Sequence;
@@ -58,7 +58,7 @@ public:
protected:
virtual void execute(Sequence *sequence) = 0;
- Common::StringArray _sequences;
+ StringArray _sequences;
};
class HandlerStartPage : public HandlerSequences {