]> git.saurik.com Git - wxWidgets.git/commitdiff
Compile fix for VC++ 5 and 6.
authorMichael Wetherell <mike.wetherell@ntlworld.com>
Sat, 28 Oct 2006 09:17:27 +0000 (09:17 +0000)
committerMichael Wetherell <mike.wetherell@ntlworld.com>
Sat, 28 Oct 2006 09:17:27 +0000 (09:17 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42558 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/fs_arc.cpp

index 5df4232e85e38b36b03db03cb4acc8842a955901..c69153cdce6950e39f0d90f541edb1ef61805d06 100644 (file)
@@ -285,7 +285,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);