added wxID_NONE

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34850 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-07-14 23:06:02 +00:00
parent 8c6785f071
commit dadacffc74
2 changed files with 15 additions and 13 deletions

View File

@@ -1617,22 +1617,21 @@ enum wxBackgroundStyle
/* standard IDs */
/* ---------------------------------------------------------------------------- */
/* any id: means that we don't care about the id, whether when installing an */
/* event handler or when creating a new window */
enum
{
wxID_ANY = -1
};
/* id for a separator line in the menu (invalid for normal item) */
enum
{
wxID_SEPARATOR = -2
};
/* Standard menu IDs */
enum
{
/* no id matches this one when compared to it */
wxID_NONE = -3,
/* id for a separator line in the menu (invalid for normal item) */
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 */
wxID_ANY = -1,
/* all predefined ids are between wxID_LOWEST and wxID_HIGHEST */
wxID_LOWEST = 4999,
wxID_OPEN,