]> git.saurik.com Git - wxWidgets.git/commitdiff
unicode compilation fix
authorRobin Dunn <robin@alldunn.com>
Tue, 6 Jul 2004 17:56:35 +0000 (17:56 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 6 Jul 2004 17:56:35 +0000 (17:56 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28177 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/logg.cpp

index a3c184b6aada27c9f8787b455bd26702f5f91fbe..70cdb8e28851dc50c7b66e42341f3eac7d165490 100644 (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]);