X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3acc9200575e1a93c406727da42ce93ae3df2177..850df2d78866c3edcf848103b5dbc7e7fa1ee5fa:/src/common/fs_arc.cpp diff --git a/src/common/fs_arc.cpp b/src/common/fs_arc.cpp index 9c92942c23..ff639417dd 100644 --- a/src/common/fs_arc.cpp +++ b/src/common/fs_arc.cpp @@ -17,12 +17,17 @@ #include "wx/fs_arc.h" -#ifndef WXPRECOMP +#ifndef WX_PRECOMP #include "wx/intl.h" #include "wx/log.h" #endif -#include "wx/archive.h" +#if WXWIN_COMPATIBILITY_2_6 + #include "wx/zipstrm.h" +#else + #include "wx/archive.h" +#endif + #include "wx/private/fileback.h" //--------------------------------------------------------------------------- @@ -390,20 +395,30 @@ wxFSFile* wxArchiveFSHandler::OpenFile( } wxArchiveInputStream *s = factory->NewStream(leftStream); + if ( !s ) + return NULL; + s->OpenEntry(*entry); - if (s && s->IsOk()) - return new wxFSFile(s, - key + right, - GetMimeTypeFromExt(location), - GetAnchor(location) + if (!s->IsOk()) + { + delete s; + return NULL; + } + +#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, + wxEmptyString, + GetAnchor(location) #if wxUSE_DATETIME - , entry->GetDateTime() + , entry->GetDateTime() #endif // wxUSE_DATETIME - ); - - delete s; - return NULL; + ); } wxString wxArchiveFSHandler::FindFirst(const wxString& spec, int flags)