diff options
author | Einar Johan Trøan Sømåen | 2012-06-25 16:44:44 +0200 |
---|---|---|
committer | Einar Johan Trøan Sømåen | 2012-06-25 16:44:44 +0200 |
commit | c2a8af7ae567e8869aac9a18d479af943cbf4a95 (patch) | |
tree | e0833b2ca834464c439716634938087d987eac5f /engines/wintermute/UI/UIObject.h | |
parent | 1c26b37ef2f4571e28a95d83d923b8eed9225231 (diff) | |
download | scummvm-rg350-c2a8af7ae567e8869aac9a18d479af943cbf4a95.tar.gz scummvm-rg350-c2a8af7ae567e8869aac9a18d479af943cbf4a95.tar.bz2 scummvm-rg350-c2a8af7ae567e8869aac9a18d479af943cbf4a95.zip |
WINTERMUTE: Rename functions and arguments in BScriptable.
Diffstat (limited to 'engines/wintermute/UI/UIObject.h')
-rw-r--r-- | engines/wintermute/UI/UIObject.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/wintermute/UI/UIObject.h b/engines/wintermute/UI/UIObject.h index 7d6dfb41f5..b91be5ac92 100644 --- a/engines/wintermute/UI/UIObject.h +++ b/engines/wintermute/UI/UIObject.h @@ -72,10 +72,10 @@ public: virtual HRESULT SaveAsText(CBDynBuffer *Buffer, int Indent);
// scripting interface
- virtual CScValue *ScGetProperty(const char *Name);
- virtual HRESULT ScSetProperty(const char *Name, CScValue *Value);
- virtual HRESULT ScCallMethod(CScScript *Script, CScStack *Stack, CScStack *ThisStack, const char *Name);
- virtual const char *ScToString();
+ virtual CScValue *scGetProperty(const char *Name);
+ virtual HRESULT scSetProperty(const char *Name, CScValue *Value);
+ virtual HRESULT scCallMethod(CScScript *Script, CScStack *Stack, CScStack *ThisStack, const char *Name);
+ virtual const char *scToString();
};
} // end of namespace WinterMute
|