aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/base/scriptables/script_ext_date.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/base/scriptables/script_ext_date.h')
-rw-r--r--engines/wintermute/base/scriptables/script_ext_date.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/engines/wintermute/base/scriptables/script_ext_date.h b/engines/wintermute/base/scriptables/script_ext_date.h
index 82f6af1f1d..b2df4abe94 100644
--- a/engines/wintermute/base/scriptables/script_ext_date.h
+++ b/engines/wintermute/base/scriptables/script_ext_date.h
@@ -34,15 +34,15 @@
namespace WinterMute {
-class CSXDate : public CBScriptable {
+class SXDate : public BaseScriptable {
public:
- int scCompare(CBScriptable *Value);
- DECLARE_PERSISTENT(CSXDate, CBScriptable)
- CSXDate(CBGame *inGame, CScStack *Stack);
- virtual ~CSXDate();
- CScValue *scGetProperty(const char *name);
- bool scSetProperty(const char *name, CScValue *value);
- bool scCallMethod(CScScript *script, CScStack *stack, CScStack *thisStack, const char *name);
+ int scCompare(BaseScriptable *Value);
+ DECLARE_PERSISTENT(SXDate, BaseScriptable)
+ SXDate(BaseGame *inGame, ScStack *Stack);
+ virtual ~SXDate();
+ ScValue *scGetProperty(const char *name);
+ bool scSetProperty(const char *name, ScValue *value);
+ bool scCallMethod(ScScript *script, ScStack *stack, ScStack *thisStack, const char *name);
const char *scToString();
char *_string;
TimeDate _tm;