]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/mstream.cpp
Unicode compilation fixes
[wxWidgets.git] / src / common / mstream.cpp
index 3e656ba3e8ac25dd8e30339ea29b2a666971c353..aed7cae179c214efb077790d6877b94328bfac0c 100644 (file)
@@ -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()