X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b0540bb8ba756e2df3479073d9f6d7c3373460c3..4a93ea29b583718ec19613d6af98ff1ce9cc0ea3:/src/common/object.cpp?ds=inline diff --git a/src/common/object.cpp b/src/common/object.cpp index 44e8d36ef3..4ebc1cc9c6 100644 --- a/src/common/object.cpp +++ b/src/common/object.cpp @@ -10,7 +10,7 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation "object.h" #endif @@ -33,9 +33,6 @@ #endif #if defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT - // for wxObject::Dump - #include "wx/ioswrap.h" - #if defined(__VISAGECPP__) #define DEBUG_PRINTF(NAME) { static int raz=0; \ printf( #NAME " %i\n",raz); fflush(stdout); raz++; } @@ -101,17 +98,6 @@ bool wxObject::IsKindOf(wxClassInfo *info) const return (thisInfo) ? thisInfo->IsKindOf(info) : FALSE ; } -#if wxUSE_STD_IOSTREAM && (defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT) -void wxObject::Dump(wxSTD ostream& str) -{ - if (GetClassInfo() && GetClassInfo()->GetClassName()) - str << GetClassInfo()->GetClassName(); - else - str << _T("unknown object class"); -} -#endif - - #if defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING && defined( new ) #undef new #endif