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
This commit is contained in:
Václav Slavík 2000-08-12 20:06:54 +00:00
parent 27ced3613f
commit f19c82dd2a

View File

@ -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);
}