X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bc83ea24b4244aca0476db4516ace2e947f7ee5a..94fc5183e9f56fda8e87293a6d9aff2859f623ba:/src/common/mstream.cpp diff --git a/src/common/mstream.cpp b/src/common/mstream.cpp index 5d13a0a2e0..aed7cae179 100644 --- a/src/common/mstream.cpp +++ b/src/common/mstream.cpp @@ -23,8 +23,8 @@ #if wxUSE_STREAMS #include -#include -#include +#include "wx/stream.h" +#include "wx/mstream.h" // ---------------------------------------------------------------------------- // wxMemoryInputStream @@ -77,7 +77,8 @@ wxMemoryOutputStream::wxMemoryOutputStream(char *data, size_t len) m_o_streambuf = new wxStreamBuffer(wxStreamBuffer::write); if (data) m_o_streambuf->SetBufferIO(data, data+len); - m_o_streambuf->Fixed(TRUE); + m_o_streambuf->Fixed(FALSE); + m_o_streambuf->Flushable(FALSE); } wxMemoryOutputStream::~wxMemoryOutputStream()