X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/00375592f92f68c4ca3f44d8e839bcfd47adc4e1..8f248607e5557858399a0d13b077a49014df8fbc:/src/common/archive.cpp diff --git a/src/common/archive.cpp b/src/common/archive.cpp index 6420d94852..8ad3fcc2bd 100644 --- a/src/common/archive.cpp +++ b/src/common/archive.cpp @@ -22,7 +22,7 @@ #include "wx/defs.h" #endif -#if wxUSE_ZLIB && wxUSE_STREAMS && wxUSE_ZIPSTREAM +#if wxUSE_STREAMS && wxUSE_ARCHIVE_STREAMS #include "wx/archive.h" #include "wx/html/forcelnk.h" @@ -30,7 +30,9 @@ IMPLEMENT_ABSTRACT_CLASS(wxArchiveEntry, wxObject) IMPLEMENT_ABSTRACT_CLASS(wxArchiveClassFactory, wxObject) +#if wxUSE_ZIPSTREAM FORCE_LINK(zipstrm) +#endif ///////////////////////////////////////////////////////////////////////////// @@ -65,10 +67,10 @@ void wxArchiveEntry::SetNotifier(wxArchiveNotifier& notifier) m_notifier->OnEntryUpdated(*this); } -wxArchiveEntry& wxArchiveEntry::operator=(const wxArchiveEntry& entry) +wxArchiveEntry& wxArchiveEntry::operator=(const wxArchiveEntry& WXUNUSED(e)) { - m_notifier = entry.m_notifier; + m_notifier = NULL; return *this; } -#endif +#endif // wxUSE_STREAMS && wxUSE_ARCHIVE_STREAMS