From 8daf7fbba880ab2ae623a823a1ad3b5d2ba96d6a Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Sun, 20 Sep 2009 23:34:48 +0000 Subject: Changed some type names to match our coding guidelines. svn-id: r44224 --- engines/cine/script.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'engines/cine/script.h') diff --git a/engines/cine/script.h b/engines/cine/script.h index 2d546b39a0..5b930e3f64 100644 --- a/engines/cine/script.h +++ b/engines/cine/script.h @@ -44,10 +44,10 @@ namespace Cine { class FWScript; -typedef int (FWScript::*opFunc)(); +typedef int (FWScript::*OpFunc)(); struct Opcode { - const opFunc proc; + const OpFunc proc; const char *args; }; @@ -320,7 +320,7 @@ public: */ class FWScriptInfo { protected: - virtual opFunc opcodeHandler(byte opcode) const; + virtual OpFunc opcodeHandler(byte opcode) const; public: virtual ~FWScriptInfo() {} @@ -338,7 +338,7 @@ public: */ class OSScriptInfo : public FWScriptInfo { protected: - virtual opFunc opcodeHandler(byte opcode) const; + virtual OpFunc opcodeHandler(byte opcode) const; public: virtual ~OSScriptInfo() {} -- cgit v1.2.3