]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/msvcrt.h
change wxDataViewItem id to void*
[wxWidgets.git] / include / wx / msw / msvcrt.h
index 0b08fc2f12a7b21544055b8749f8ab730a80ac30..c5afed22c73b31d22ba8f6a871e57405a04ff1f9 100644 (file)
 
     #include <crtdbg.h>
 
+    #undef WXDEBUG_NEW
+    #define WXDEBUG_NEW new(_NORMAL_BLOCK, __FILE__, __LINE__)
+
     // this define works around a bug with inline declarations of new, see
     //
     //      http://support.microsoft.com/support/kb/articles/Q140/8/58.asp
     //
     // for the details
-    #define new  new( _NORMAL_BLOCK, __FILE__, __LINE__)
+    #define new  WXDEBUG_NEW
 
     #define wxCrtSetDbgFlag(flag) \
         _CrtSetDbgFlag(_CrtSetDbgFlag(_CRTDBG_REPORT_FLAG) | (flag))