really fixed number of bytes written in WriteString() in Unicode mode

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38587 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2006-04-05 23:19:09 +00:00
parent 35d11700a5
commit bfaee57e81

View File

@ -415,9 +415,8 @@ void wxTextOutputStream::WriteString(const wxString& string)
}
#if wxUSE_UNICODE
// note that we must not write the trailing NUL here
wxCharBuffer buffer = m_conv->cWC2MB(out, out.length(), &len);
m_output.Write(buffer, len + 1 - m_conv->GetMBNulLen());
m_output.Write(buffer, len);
#else
m_output.Write(out.c_str(), out.length() );
#endif