X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/41b0a1139d039c486983ad3ca020217f17fd7414..baf34314451302852746f3271f5eb4ec94015f64:/src/common/datstrm.cpp?ds=sidebyside diff --git a/src/common/datstrm.cpp b/src/common/datstrm.cpp index f9f974012e..b0ef8302a2 100644 --- a/src/common/datstrm.cpp +++ b/src/common/datstrm.cpp @@ -6,7 +6,7 @@ // Created: 28/06/98 // RCS-ID: $Id$ // Copyright: (c) Guilhem Lavaux -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifdef __GNUG__ @@ -28,8 +28,13 @@ // wxDataInputStream // --------------------------------------------------------------------------- +#if wxUSE_UNICODE +wxDataInputStream::wxDataInputStream(wxInputStream& s, wxMBConv& conv) + : m_input(&s), m_be_order(FALSE), m_conv(conv) +#else wxDataInputStream::wxDataInputStream(wxInputStream& s) : m_input(&s), m_be_order(FALSE) +#endif { } @@ -108,14 +113,14 @@ wxString wxDataInputStream::ReadString() char *tmp = new char[len + 1]; m_input->Read(tmp, len); tmp[len] = 0; - wxString s(tmp); + wxString ret( (const wxChar*) m_conv.cMB2WX(tmp) ); delete[] tmp; #else - wxString s; - m_input->Read(s.GetWriteBuf(len), len); - s.UngetWriteBuf(); + wxString ret; + m_input->Read( ret.GetWriteBuf(len), len); + ret.UngetWriteBuf(); #endif - return s; + return ret; } else return wxEmptyString; @@ -185,8 +190,13 @@ wxDataInputStream& wxDataInputStream::operator>>(float& f) // wxDataOutputStream // --------------------------------------------------------------------------- +#if wxUSE_UNICODE +wxDataOutputStream::wxDataOutputStream(wxOutputStream& s, wxMBConv& conv) + : m_output(&s), m_be_order(FALSE), m_conv(conv) +#else wxDataOutputStream::wxDataOutputStream(wxOutputStream& s) : m_output(&s), m_be_order(FALSE) +#endif { } @@ -235,10 +245,15 @@ void wxDataOutputStream::Write8(wxUint8 i) void wxDataOutputStream::WriteString(const wxString& string) { +#if wxUSE_UNICODE + const wxWX2MBbuf buf = string.mb_str(m_conv); +#else const wxWX2MBbuf buf = string.mb_str(); - Write32(string.Len()); - if (string.Len() > 0) - m_output->Write(buf, string.Len()); +#endif + size_t len = strlen(buf); + Write32(len); + if (len > 0) + m_output->Write(buf, len); } // Must be at global scope for VC++ 5