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:
@@ -52,7 +52,7 @@ bool wxXmlIOHandlerBinZ::Load(wxInputStream& stream, wxXmlDocument& doc)
|
|||||||
{
|
{
|
||||||
ReadHeader(stream);
|
ReadHeader(stream);
|
||||||
wxZlibInputStream costr(stream);
|
wxZlibInputStream costr(stream);
|
||||||
return wxXmlIOHandlerBin::Load(stream, doc);
|
return wxXmlIOHandlerBin::Load(costr, doc);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user