]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/defs.h
use UnsetToolTip() instead of SetToolTip(NULL) to fix wxX11 build broken on Buildbot...
[wxWidgets.git] / interface / wx / defs.h
index b1b2c9536ec3f9c65ec65d9f3be70856a401481a..cdfa5d7ac5bcf76b27c7efc8c6aca3f947c46ac8 100644 (file)
@@ -290,6 +290,18 @@ enum wxPaperSize
  */
 #define DECLARE_NO_COPY_CLASS(classname)
 
  */
 #define DECLARE_NO_COPY_CLASS(classname)
 
+/**
+    Equivalent of DECLARE_NO_COPY_CLASS() for template classes.
+
+    This macro can be used for template classes (with a single template
+    parameter) for the same purpose as DECLARE_NO_COPY_CLASS() is used with the
+    non-template classes.
+
+    @param classname The name of the template class.
+    @param arg The name of the template parameter.
+ */
+#define DECLARE_NO_COPY_TEMPLATE_CLASS(classname, arg)
+
 /**
     This macro can be used around a function declaration to generate warnings
     indicating that this function is deprecated (i.e. obsolete and planned to
 /**
     This macro can be used around a function declaration to generate warnings
     indicating that this function is deprecated (i.e. obsolete and planned to