aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/Base/BBase.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/Base/BBase.h')
-rw-r--r--engines/wintermute/Base/BBase.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/wintermute/Base/BBase.h b/engines/wintermute/Base/BBase.h
index afbe277529..e8c87f1f9e 100644
--- a/engines/wintermute/Base/BBase.h
+++ b/engines/wintermute/Base/BBase.h
@@ -43,11 +43,11 @@ class CBDynBuffer;
class CBBase {
public:
bool _persistable;
- ERRORCODE setEditorProp(const char *propName, const char *propValue);
+ bool setEditorProp(const char *propName, const char *propValue);
const char *getEditorProp(const char *propName, const char *initVal = NULL);
CBBase(TDynamicConstructor, TDynamicConstructor) {};
- ERRORCODE parseEditorProperty(byte *buffer, bool complete = true);
- virtual ERRORCODE saveAsText(CBDynBuffer *buffer, int indent = 0);
+ bool parseEditorProperty(byte *buffer, bool complete = true);
+ virtual bool saveAsText(CBDynBuffer *buffer, int indent = 0);
CBBase();
CBGame *_gameRef;
CBBase(CBGame *GameOwner);