]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/object.h
SF bug 1895101
[wxWidgets.git] / interface / object.h
index 07bb1f1f46298fd00269dca93d6a4622742325d6..e84f3a82660d541a11b283633db13d627d09b4b2 100644 (file)
@@ -769,20 +769,6 @@ public:
 */
 #define wxConstCast( ptr, classname )
 
-/**
-    This is defined in debug mode to be call the redefined new operator
-    with filename and line number arguments. The definition is:
-
-    @code
-    #define WXDEBUG_NEW new(__FILE__,__LINE__)
-    @endcode
-
-    In non-debug mode, this is defined as the normal new operator.
-
-    @header{wx/object.h}
-*/
-#define WXDEBUG_NEW( arg )
-
 /**
     This macro returns the pointer @e ptr cast to the type @e classname * if
     the pointer is of this type (the check is done during the run-time) or
@@ -846,3 +832,22 @@ wxObject *wxCreateDynamicObject(const wxString& className);
 
 //@}
 
+/** @ingroup group_funcmacro_debug */
+//@{
+
+/**
+    This is defined in debug mode to be call the redefined new operator
+    with filename and line number arguments. The definition is:
+
+    @code
+    #define WXDEBUG_NEW new(__FILE__,__LINE__)
+    @endcode
+
+    In non-debug mode, this is defined as the normal new operator.
+
+    @header{wx/object.h}
+*/
+#define WXDEBUG_NEW( arg )
+
+//@}
+