X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ddaf55663fe1d17e473579e757a12473d3392b2c..e0176dd9fb716ad0a1a8804f0a93e16048f09054:/src/common/fs_zip.cpp diff --git a/src/common/fs_zip.cpp b/src/common/fs_zip.cpp index 4d9d3aa3c5..b3790e6a16 100644 --- a/src/common/fs_zip.cpp +++ b/src/common/fs_zip.cpp @@ -4,12 +4,12 @@ // Author: Vaclav Slavik // Copyright: (c) 1999 Vaclav Slavik // CVS-ID: $Id$ -// Licence: wxWindows Licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation "fs_zip.h" #endif @@ -26,7 +26,6 @@ #include "wx/log.h" #endif -#include "wx/hash.h" #include "wx/filesys.h" #include "wx/zipstrm.h" #include "wx/fs_zip.h" @@ -38,7 +37,6 @@ #include "unzip.h" #endif - //---------------------------------------------------------------------------- // wxZipFSHandler //---------------------------------------------------------------------------- @@ -149,7 +147,7 @@ wxString wxZipFSHandler::FindFirst(const wxString& spec, int flags) m_ZipFile = left; wxString nativename = wxFileSystem::URLToFileName(m_ZipFile).GetFullPath(); - m_Archive = (void*) unzOpen(nativename.mb_str()); + m_Archive = (void*) unzOpen(nativename.mb_str(wxConvFile)); m_Pattern = right.AfterLast(wxT('/')); m_BaseDir = right.BeforeLast(wxT('/')); @@ -165,7 +163,7 @@ wxString wxZipFSHandler::FindFirst(const wxString& spec, int flags) if (m_AllowDirs) { delete m_DirsFound; - m_DirsFound = new wxHashTableLong(); + m_DirsFound = new wxLongToLongHashMap(); } return DoFind(); } @@ -194,7 +192,7 @@ wxString wxZipFSHandler::DoFind() { unzGetCurrentFileInfo((unzFile)m_Archive, NULL, namebuf, 1024, NULL, 0, NULL, 0); for (c = namebuf; *c; c++) if (*c == '\\') *c = '/'; - namestr = wxString::FromAscii( namebuf ); // TODO what encoding does ZIP use? + namestr = wxString::FromAscii(namebuf); // TODO what encoding does ZIP use? if (m_AllowDirs) { @@ -203,9 +201,10 @@ wxString wxZipFSHandler::DoFind() { long key = 0; for (size_t i = 0; i < dir.Length(); i++) key += (wxUChar)dir[i]; - if (m_DirsFound->Get(key) == wxNOT_FOUND) + wxLongToLongHashMap::iterator it = m_DirsFound->find(key); + if (it == m_DirsFound->end()) { - m_DirsFound->Put(key, 1); + (*m_DirsFound)[key] = 1; filename = dir.AfterLast(wxT('/')); dir = dir.BeforeLast(wxT('/')); if (!filename.IsEmpty() && m_BaseDir == dir &&