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:
@@ -717,7 +717,7 @@ wxLogDialog::wxLogDialog(wxWindow *parent,
|
|||||||
for ( size_t n = 0; n < count; n++ )
|
for ( size_t n = 0; n < count; n++ )
|
||||||
{
|
{
|
||||||
wxString msg = messages[n];
|
wxString msg = messages[n];
|
||||||
msg.Replace("\n", " ");
|
msg.Replace(wxT("\n"), wxT(" "));
|
||||||
m_messages.Add(msg);
|
m_messages.Add(msg);
|
||||||
m_severity.Add(severity[n]);
|
m_severity.Add(severity[n]);
|
||||||
m_times.Add(times[n]);
|
m_times.Add(times[n]);
|
||||||
|
Reference in New Issue
Block a user