From: Vadim Zeitlin Date: Sat, 28 Oct 2006 00:28:41 +0000 (+0000) Subject: fix VC warning about forward declaring struct as class X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e7fbaf0efdf43797e63b10eadb655c3a3b94f453?ds=inline fix VC warning about forward declaring struct as class git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42546 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/fs_arc.h b/include/wx/fs_arc.h index 748f523b92..5500872836 100644 --- a/include/wx/fs_arc.h +++ b/include/wx/fs_arc.h @@ -40,7 +40,7 @@ private: // these vars are used by FindFirst/Next: class wxArchiveFSCacheData *m_Archive; - class wxArchiveFSEntry *m_FindEntry; + struct wxArchiveFSEntry *m_FindEntry; wxString m_Pattern, m_BaseDir, m_ZipFile; bool m_AllowDirs, m_AllowFiles; wxArchiveFilenameHashMap *m_DirsFound;