Write a newline, not a 10 into the stream

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44197 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2007-01-11 13:54:29 +00:00
parent d40e9e06bb
commit 3d490242f0

View File

@ -172,7 +172,7 @@ wxOutputStream &DoodleSegment::SaveObject(wxOutputStream& stream)
wxTextOutputStream text_stream( stream );
wxInt32 n = lines.GetCount();
text_stream << n << _T('\n');
text_stream << n << _T("\n");
wxList::compatibility_iterator node = lines.GetFirst();
while (node)