]> git.saurik.com Git - wxWidgets.git/commitdiff
put GetEscapeId() inside #if wxABI_VERSION > 20601
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 16 Jul 2005 22:52:34 +0000 (22:52 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 16 Jul 2005 22:52:34 +0000 (22:52 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34871 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/dialog.h

index 5f43cf3e869951ceb8d26d53d6adf145fdae9f60..8d054b7fa12a55549852e85b6dfcfc994acaa7cf 100644 (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