From: Vadim Zeitlin Date: Thu, 28 Jul 2005 21:23:50 +0000 (+0000) Subject: added wxABI_VERSION check around newly added function X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b7d5066c30ad602d38ab39e606088595463a86dc added wxABI_VERSION check around newly added function git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34958 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/fs_zip.h b/include/wx/fs_zip.h index 58ff653e8a..46426f971f 100644 --- a/include/wx/fs_zip.h +++ b/include/wx/fs_zip.h @@ -37,7 +37,9 @@ class WXDLLIMPEXP_BASE wxZipFSHandler : public wxFileSystemHandler virtual wxFSFile* OpenFile(wxFileSystem& fs, const wxString& location); virtual wxString FindFirst(const wxString& spec, int flags = 0); virtual wxString FindNext(); +#if wxABI_VERSION >= 20602 /* 2.6.2+ only */ void Cleanup(); +#endif ~wxZipFSHandler(); private: