From: Vadim Zeitlin Date: Wed, 17 Aug 2005 12:56:21 +0000 (+0000) Subject: don't take wxID_NONE inside #if wxABI_VERSION check: it's (going to be) used inside... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/644e896d3f855f2a85cc2f8bd1532b352cf30768 don't take wxID_NONE inside #if wxABI_VERSION check: it's (going to be) used inside the library itself and, anyhow, there is no harm in letting even the user code compiled with lower than current wxABI_VERSION to see it git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35209 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/defs.h b/include/wx/defs.h index ba94f1e066..2924970772 100644 --- a/include/wx/defs.h +++ b/include/wx/defs.h @@ -1616,10 +1616,8 @@ enum wxBackgroundStyle /* Standard menu IDs */ enum { -#if wxABI_VERSION >= 20602 /* no id matches this one when compared to it */ wxID_NONE = -3, -#endif /* id for a separator line in the menu (invalid for normal item) */ wxID_SEPARATOR = -2,