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 73eabb5d62..d505ec0b1d 100644
--- a/engines/wintermute/Base/BBase.h
+++ b/engines/wintermute/Base/BBase.h
@@ -43,11 +43,11 @@ class CBDynBuffer;
class CBBase {
public:
bool _persistable;
- HRESULT setEditorProp(const char *propName, const char *propValue);
+ ERRORCODE setEditorProp(const char *propName, const char *propValue);
const char *getEditorProp(const char *propName, const char *initVal = NULL);
CBBase(TDynamicConstructor, TDynamicConstructor) {};
- HRESULT parseEditorProperty(byte *buffer, bool complete = true);
- virtual HRESULT saveAsText(CBDynBuffer *buffer, int indent = 0);
+ ERRORCODE parseEditorProperty(byte *buffer, bool complete = true);
+ virtual ERRORCODE saveAsText(CBDynBuffer *buffer, int indent = 0);
CBBase();
CBGame *Game;
CBBase(CBGame *GameOwner);