From: Vadim Zeitlin Date: Sat, 16 Jul 2005 22:52:34 +0000 (+0000) Subject: put GetEscapeId() inside #if wxABI_VERSION > 20601 X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7ae74029b8a3514d2f0dff70e2a8f7700a6eda51?ds=inline put GetEscapeId() inside #if wxABI_VERSION > 20601 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34871 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/dialog.h b/include/wx/dialog.h index 5f43cf3e86..8d054b7fa1 100644 --- a/include/wx/dialog.h +++ b/include/wx/dialog.h @@ -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