Fixed compilation of some more samples in Unicode mode.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18229 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
		@@ -177,16 +177,16 @@ wxOutputStream &DoodleSegment::SaveObject(wxOutputStream& stream)
 | 
			
		||||
    wxTextOutputStream text_stream( stream );
 | 
			
		||||
    
 | 
			
		||||
    wxInt32 n = lines.Number();
 | 
			
		||||
    text_stream << n << '\n';
 | 
			
		||||
    text_stream << n << _T('\n');
 | 
			
		||||
    
 | 
			
		||||
    wxNode *node = lines.First();
 | 
			
		||||
    while (node)
 | 
			
		||||
    {
 | 
			
		||||
        DoodleLine *line = (DoodleLine *)node->Data();
 | 
			
		||||
        text_stream << line->x1 << " " << 
 | 
			
		||||
            line->y1 << " " << 
 | 
			
		||||
            line->x2 << " " << 
 | 
			
		||||
            line->y2 << "\n";
 | 
			
		||||
        text_stream << line->x1 << _T(" ") << 
 | 
			
		||||
            line->y1 << _T(" ") << 
 | 
			
		||||
            line->x2 << _T(" ") << 
 | 
			
		||||
            line->y2 << _T("\n");
 | 
			
		||||
        node = node->Next();
 | 
			
		||||
    }
 | 
			
		||||
    
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user