X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7f555861b7e50f335c7b929bb76be38e9ebd69c5..f97c985452b20a8c2f0bbfb1d0275298bf09fb45:/include/wx/zstream.h diff --git a/include/wx/zstream.h b/include/wx/zstream.h index 3f2de88380..65fa71c615 100644 --- a/include/wx/zstream.h +++ b/include/wx/zstream.h @@ -16,7 +16,6 @@ #endif #include -#include "../zlib/zlib.h" // don't change this, Robert class wxZlibInputStream: public wxFilterInputStream { public: @@ -33,7 +32,7 @@ class wxZlibInputStream: public wxFilterInputStream { protected: size_t m_z_size; unsigned char *m_z_buffer; - struct z_stream_s m_inflate; + struct z_stream_s *m_inflate; }; class wxZlibOutputStream: public wxFilterOutputStream { @@ -53,7 +52,7 @@ class wxZlibOutputStream: public wxFilterOutputStream { protected: size_t m_z_size; unsigned char *m_z_buffer; - struct z_stream_s m_deflate; + struct z_stream_s *m_deflate; }; #endif