X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8429bec1e8e3fcb7d071bc3ef7c665c484b5fdc1..3f659fd6b10a8a5c899eaa99adc76a55322b33fd:/src/common/object.cpp diff --git a/src/common/object.cpp b/src/common/object.cpp index 2c8864b956..8cbdcef7c4 100644 --- a/src/common/object.cpp +++ b/src/common/object.cpp @@ -22,7 +22,7 @@ #ifndef WX_PRECOMP #include "wx/hash.h" -#ifdef USE_STORABLE_CLASSES +#ifdef USE_SERIAL #include "wx/objstrm.h" #include "wx/serbase.h" #endif @@ -53,7 +53,7 @@ wxHashTable wxClassInfo::classTable(wxKEY_STRING); wxObject::wxObject(void) { m_refData = (wxObjectRefData *) NULL; -#ifdef USE_STORABLE_CLASSES +#ifdef USE_SERIAL m_serialObj = (wxObject_Serialize *)NULL; #endif } @@ -61,7 +61,7 @@ wxObject::wxObject(void) wxObject::~wxObject(void) { UnRef(); -#ifdef USE_STORABLE_CLASSES +#ifdef USE_SERIAL if (m_serialObj) delete m_serialObj; #endif