From: Václav Slavík Date: Sat, 12 Aug 2000 20:06:54 +0000 (+0000) Subject: fixed bug in zlib compressed binary xml resources saving (crashed due to a typo) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f19c82dd2a64a6317ee05527710638c4dffbcf0f fixed bug in zlib compressed binary xml resources saving (crashed due to a typo) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8056 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/contrib/src/xml/xmlbinz.cpp b/contrib/src/xml/xmlbinz.cpp index a65d81bd99..db42f205ca 100644 --- a/contrib/src/xml/xmlbinz.cpp +++ b/contrib/src/xml/xmlbinz.cpp @@ -52,7 +52,7 @@ bool wxXmlIOHandlerBinZ::Load(wxInputStream& stream, wxXmlDocument& doc) { ReadHeader(stream); wxZlibInputStream costr(stream); - return wxXmlIOHandlerBin::Load(stream, doc); + return wxXmlIOHandlerBin::Load(costr, doc); }