projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
27ced36
)
fixed bug in zlib compressed binary xml resources saving (crashed due to a typo)
author
Václav Slavík
<vslavik@fastmail.fm>
Sat, 12 Aug 2000 20:06:54 +0000
(20:06 +0000)
committer
Václav Slavík
<vslavik@fastmail.fm>
Sat, 12 Aug 2000 20:06:54 +0000
(20:06 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8056
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
contrib/src/xml/xmlbinz.cpp
patch
|
blob
|
blame
|
history
diff --git
a/contrib/src/xml/xmlbinz.cpp
b/contrib/src/xml/xmlbinz.cpp
index a65d81bd9939f3e889ec0e14bd09c5dc3930b4e7..db42f205ca7636df0bbb3a23bf9d3dc96c6dc682 100644
(file)
--- 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);
}