X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0d3820b348955b748fa0ab3076f4ed9763ce4bee..2a4f4a27732a6d8deb8b006c73cca9d7105fe92c:/include/wx/object.h diff --git a/include/wx/object.h b/include/wx/object.h index ea3b030deb..8da110ce98 100644 --- a/include/wx/object.h +++ b/include/wx/object.h @@ -206,7 +206,7 @@ class WXDLLEXPORT wxObject bool IsKindOf(wxClassInfo *info); -#if DEBUG && USE_MEMORY_TRACING +#if WXDEBUG && USE_MEMORY_TRACING void * operator new (size_t size, char * fileName = NULL, int lineNum = 0); void operator delete (void * buf); @@ -218,7 +218,7 @@ class WXDLLEXPORT wxObject #endif -#if DEBUG || USE_DEBUG_CONTEXT +#if WXDEBUG || USE_DEBUG_CONTEXT virtual void Dump(ostream& str); #endif @@ -256,7 +256,7 @@ private: int m_count; }; -#if DEBUG && USE_GLOBAL_MEMORY_OPERATORS +#if WXDEBUG && USE_GLOBAL_MEMORY_OPERATORS #ifndef WXDEBUG_NEW #define WXDEBUG_NEW new(__FILE__,__LINE__) #endif