aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/base/base_object.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/base/base_object.h')
-rw-r--r--engines/wintermute/base/base_object.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/wintermute/base/base_object.h b/engines/wintermute/base/base_object.h
index 9593c98032..7afe9cf94c 100644
--- a/engines/wintermute/base/base_object.h
+++ b/engines/wintermute/base/base_object.h
@@ -136,10 +136,10 @@ public:
public:
// scripting interface
- virtual ScValue *scGetProperty(const Common::String &name);
- virtual bool scSetProperty(const char *name, ScValue *value);
- virtual bool scCallMethod(ScScript *script, ScStack *stack, ScStack *thisStack, const char *name);
- virtual const char *scToString();
+ virtual ScValue *scGetProperty(const Common::String &name) override;
+ virtual bool scSetProperty(const char *name, ScValue *value) override;
+ virtual bool scCallMethod(ScScript *script, ScStack *stack, ScStack *thisStack, const char *name) override;
+ virtual const char *scToString() override;
};
} // end of namespace Wintermute