X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f068697b463e8ee2787e867597ab74c68e94aba6..ef1160a7dcc9065f5321a84c142cabcef9eb9df0:/src/common/fs_arc.cpp diff --git a/src/common/fs_arc.cpp b/src/common/fs_arc.cpp index 5df4232e85..a00e6accd7 100644 --- a/src/common/fs_arc.cpp +++ b/src/common/fs_arc.cpp @@ -22,9 +22,13 @@ #include "wx/log.h" #endif -#include "wx/archive.h" -#include "wx/fileback.h" -#include "wx/thread.h" +#if WXWIN_COMPATIBILITY_2_6 + #include "wx/zipstrm.h" +#else + #include "wx/archive.h" +#endif + +#include "wx/private/fileback.h" //--------------------------------------------------------------------------- // wxArchiveFSCacheDataImpl @@ -120,7 +124,7 @@ wxArchiveFSCacheDataImpl::~wxArchiveFSCacheDataImpl() wxArchiveFSEntry *wxArchiveFSCacheDataImpl::AddToCache(wxArchiveEntry *entry) { - m_hash[entry->GetName()] = entry; + m_hash[entry->GetName(wxPATH_UNIX)] = entry; wxArchiveFSEntry *fse = new wxArchiveFSEntry; *m_endptr = fse; (*m_endptr)->entry = entry; @@ -153,7 +157,7 @@ wxArchiveEntry *wxArchiveFSCacheDataImpl::Get(const wxString& name) { AddToCache(entry); - if (entry->GetName() == name) + if (entry->GetName(wxPATH_UNIX) == name) return entry; } @@ -285,7 +289,7 @@ wxArchiveFSCacheData* wxArchiveFSCache::Add( const wxArchiveClassFactory& factory, wxInputStream *stream) { - wxArchiveFSCacheData& data(m_hash[name]); + wxArchiveFSCacheData& data = m_hash[name]; if (stream->IsSeekable()) data = wxArchiveFSCacheData(factory, stream); @@ -394,6 +398,12 @@ wxFSFile* wxArchiveFSHandler::OpenFile( s->OpenEntry(*entry); if (s && s->IsOk()) + { +#if WXWIN_COMPATIBILITY_2_6 + if (factory->IsKindOf(CLASSINFO(wxZipClassFactory))) + ((wxZipInputStream*)s)->m_allowSeeking = true; +#endif // WXWIN_COMPATIBILITY_2_6 + return new wxFSFile(s, key + right, GetMimeTypeFromExt(location), @@ -402,6 +412,7 @@ wxFSFile* wxArchiveFSHandler::OpenFile( , entry->GetDateTime() #endif // wxUSE_DATETIME ); + } delete s; return NULL;