]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/zipstrm.cpp
Also allow key events for Shift-Tab when wxWANTS_CHARS style is used
[wxWidgets.git] / src / common / zipstrm.cpp
index 9401ef1c1a95aa22676dcd85f3c5900fd25318ac..d01d464df2c093e939b20b145099e47ae09ae371 100644 (file)
@@ -40,7 +40,7 @@ wxZipInputStream::wxZipInputStream(const wxString& archive, const wxString& file
 
     m_Pos = 0;
     m_Size = 0;
-    m_Archive = (void*) unzOpen(archive.fn_str());
+    m_Archive = (void*) unzOpen(archive.mb_str(wxConvFile));
     if (m_Archive == NULL)
     {
         m_lasterror = wxSTREAM_READ_ERROR;