From 7ae74029b8a3514d2f0dff70e2a8f7700a6eda51 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 16 Jul 2005 22:52:34 +0000 Subject: [PATCH] put GetEscapeId() inside #if wxABI_VERSION > 20601 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34871 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/dialog.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.0