]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/defs.h
Applied minor documentation corrections to wxRegKey from charles (fixes #10407).
[wxWidgets.git] / interface / wx / defs.h
index 5eeba8ee717d9cb28d1908f40e9888c58a183300..812d422968da689edab5e20af598510b6710ef9e 100644 (file)
@@ -6,6 +6,23 @@
 // Licence:     wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
+
+/**
+    No id matches this one when compared to it.
+*/
+int wxID_NONE = -3;
+
+/**
+    Id for a separator line in the menu (invalid for normal item).
+*/
+int wxID_SEPARATOR = -2;
+
+/**
+    Any id: means that we don't care about the id, whether when installing
+    an event handler or when creating a new window.
+*/
+int wxID_ANY = -1;
+
 /**
     Item kinds for use with wxMenu, wxMenuItem, and wxToolBar.