- 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)
- {
- c = wxT('\r');
- m_output.Write( (const void*)(&c), sizeof(wxChar) );
- } else
- {
- c = wxT('\n');
- m_output.Write( (const void*)(&c), sizeof(wxChar) );