X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6bcfd974ef26faf6f91a62cac09827e09463fd1..311da78ab09eae86859ab8c9f3297e536fda0604:/src/common/txtstrm.cpp diff --git a/src/common/txtstrm.cpp b/src/common/txtstrm.cpp index 8fd6ffaaaf..14b8e4a626 100644 --- a/src/common/txtstrm.cpp +++ b/src/common/txtstrm.cpp @@ -351,7 +351,7 @@ wxTextOutputStream::wxTextOutputStream(wxOutputStream& s, wxEOL mode) { #if defined(__WXMSW__) || defined(__WXPM__) m_mode = wxEOL_DOS; -#elif defined(__WXMAC__) +#elif defined(__WXMAC__) && !defined(__DARWIN__) m_mode = wxEOL_MAC; #else m_mode = wxEOL_UNIX; @@ -370,7 +370,7 @@ void wxTextOutputStream::SetMode(wxEOL mode) { #if defined(__WXMSW__) || defined(__WXPM__) m_mode = wxEOL_DOS; -#elif defined(__WXMAC__) +#elif defined(__WXMAC__) && !defined(__DARWIN__) m_mode = wxEOL_MAC; #else m_mode = wxEOL_UNIX; @@ -412,33 +412,41 @@ void wxTextOutputStream::WriteDouble(double d) void wxTextOutputStream::WriteString(const wxString& string) { - for (size_t i = 0; i < string.Len(); i++) + size_t len = string.length(); + + wxString out; + out.reserve(len); + + for ( size_t i = 0; i < len; i++ ) { - wxChar c = string[i]; - if (c == wxT('\n')) + const wxChar c = string[i]; + if ( c == wxT('\n') ) { - if (m_mode == wxEOL_DOS) - { - c = wxT('\r'); - m_output.Write( (const void*)(&c), sizeof(wxChar) ); - c = wxT('\n'); - m_output.Write( (const void*)(&c), sizeof(wxChar) ); - } else - if (m_mode == wxEOL_MAC) + switch ( m_mode ) { - c = wxT('\r'); - m_output.Write( (const void*)(&c), sizeof(wxChar) ); - } else - { - c = wxT('\n'); - m_output.Write( (const void*)(&c), sizeof(wxChar) ); + case wxEOL_DOS: + out << _T("\r\n"); + continue; + + case wxEOL_MAC: + out << _T('\r'); + continue; + + default: + wxFAIL_MSG( _T("unknown EOL mode in wxTextOutputStream") ); + // fall through + + case wxEOL_UNIX: + // don't treat '\n' specially + ; } } - else - { - m_output.Write( (const void*)(&c), sizeof(wxChar) ); - } + + out << c; } + + // NB: we don't need to write the trailing NUL here + m_output.Write(out.c_str(), out.length() * sizeof(wxChar)); } wxTextOutputStream& wxTextOutputStream::operator<<(const wxChar *string)