X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ba8c1601448fa16d64c4e75a095f1cb037909c5b..86d35a44665429542685acbdc3a23cdcdcc48fb5:/src/common/fs_zip.cpp diff --git a/src/common/fs_zip.cpp b/src/common/fs_zip.cpp index 3e879ecfdd..bb449aab85 100644 --- a/src/common/fs_zip.cpp +++ b/src/common/fs_zip.cpp @@ -9,7 +9,7 @@ -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation "fs_zip.h" #endif @@ -38,8 +38,8 @@ #include "unzip.h" #endif -WX_DECLARE_EXPORTED_HASH_MAP( long, long, wxIntegerHash, wxIntegerEqual, - wxLongToLongHashMap ); +WX_DECLARE_HASH_MAP_WITH_DECL( long, long, wxIntegerHash, wxIntegerEqual, + wxLongToLongHashMap, class WXDLLIMPEXP_BASE ); //---------------------------------------------------------------------------- // wxZipFSHandler @@ -208,7 +208,7 @@ wxString wxZipFSHandler::DoFind() wxLongToLongHashMap::iterator it = m_DirsFound->find(key); if (it == m_DirsFound->end()) { - m_DirsFound[key] = 1; + (*m_DirsFound)[key] = 1; filename = dir.AfterLast(wxT('/')); dir = dir.BeforeLast(wxT('/')); if (!filename.IsEmpty() && m_BaseDir == dir &&