put GetEscapeId() inside #if wxABI_VERSION > 20601

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34871 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2005-07-16 22:52:34 +00:00
parent 10b9be3230
commit 7ae74029b8

View File

@ -58,7 +58,7 @@ public:
// m_escapeId declaration and the docs for Set/GetEscapeId()
void SetEscapeId(int escapeId) { m_escapeId = escapeId; }
int GetEscapeId() const { return m_escapeId; }
#else // 2.6
#elif wxABI_VERSION > 20601
// just a stub for 2.6
int GetEscapeId() const { return wxID_ANY; }
#endif