]> git.saurik.com Git - wxWidgets.git/commitdiff
Correction in comment in closing #endif.
authorWłodzimierz Skiba <abx@abx.art.pl>
Thu, 14 Apr 2005 15:11:20 +0000 (15:11 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Thu, 14 Apr 2005 15:11:20 +0000 (15:11 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33610 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/ole/oleutils.h
include/wx/object.h

index b43624bee2caa62cef0bf65c48bf720649f33cdf..c9a6be1bd0eb251bb3fb215ed04a5adc9fe3531c 100644 (file)
@@ -197,11 +197,11 @@ void wxLogQueryInterface(const wxChar *szInterface, REFIID riid);
 void wxLogAddRef (const wxChar *szInterface, ULONG cRef);
 void wxLogRelease(const wxChar *szInterface, ULONG cRef);
 
-#else   //!WXDEBUG
+#else   //!__WXDEBUG__
   #define   wxLogQueryInterface(szInterface, riid)
   #define   wxLogAddRef(szInterface, cRef)
   #define   wxLogRelease(szInterface, cRef)
-#endif  //WXDEBUG
+#endif  //__WXDEBUG__
 
 // wrapper around BSTR type (by Vadim Zeitlin)
 
index f8064bdaae9fa54fb5c7ab39bc37187e5b522885..43fa30553e79df24818ee100877efafc5ea964fc 100644 (file)
@@ -391,7 +391,7 @@ inline void* wxCheckCast(void *ptr)
 
 #endif // wxUSE_ARRAY_MEMORY_OPERATORS
 
-#endif // WXDEBUG && wxUSE_MEMORY_TRACING
+#endif // __WXDEBUG__ && wxUSE_MEMORY_TRACING
 
 // ----------------------------------------------------------------------------
 // wxObject: the root class of wxWidgets object hierarchy