X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/27198be4ef37e67c6b088de9387f68a0df574bad..2d120f8391920145647ec10e84629bc21fa9f1bb:/include/wx/object.h diff --git a/include/wx/object.h b/include/wx/object.h index b8051a90a3..b16265669a 100644 --- a/include/wx/object.h +++ b/include/wx/object.h @@ -23,11 +23,14 @@ class WXDLLEXPORT wxObject; #if wxUSE_DYNAMIC_CLASSES -#ifdef __GNUWIN32__ +// #ifdef __GNUWIN32__ #ifdef GetClassName #undef GetClassName #endif +#ifdef GetClassInfo +#undef GetClassInfo #endif +// #endif class WXDLLEXPORT wxClassInfo; class WXDLLEXPORT wxInputStream; @@ -160,7 +163,10 @@ wxObject* WXDLLEXPORT_CTORFN wxConstructorFor##name(void) \ #endif -#define IS_KIND_OF(obj, className) obj->IsKindOf(&className::sm_class##className) +#define wxIS_KIND_OF(obj, className) obj->IsKindOf(&className::sm_class##className) + +// Just seems a bit nicer-looking (pretend it's not a macro) +#define wxIsKindOf(obj, className) obj->IsKindOf(&className::sm_class##className) // Unfortunately Borland seems to need this include. #ifdef __BORLANDC__ @@ -197,15 +203,18 @@ class WXDLLEXPORT wxObject #endif // Cause problems for VC++ -#ifndef _MSC_VER +// #ifndef _MSC_VER +#if !defined(_MSC_VER) && wxUSE_ARRAY_MEMORY_OPERATORS void * operator new[] (size_t size, char * fileName = NULL, int lineNum = 0); void operator delete[] (void * buf); #endif +/* #ifdef __MWERKS__ void * operator new[] (size_t size, char * fileName , int lineNum = 0); void operator delete[] (void * buf); #endif +*/ #endif