unicode compilation fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28177 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-07-06 17:56:35 +00:00
parent 786c4e23f5
commit ff0a9f8d18

View File

@@ -717,7 +717,7 @@ wxLogDialog::wxLogDialog(wxWindow *parent,
for ( size_t n = 0; n < count; n++ )
{
wxString msg = messages[n];
msg.Replace("\n", " ");
msg.Replace(wxT("\n"), wxT(" "));
m_messages.Add(msg);
m_severity.Add(severity[n]);
m_times.Add(times[n]);