From: Włodzimierz Skiba Date: Fri, 17 Dec 2004 12:12:00 +0000 (+0000) Subject: Unicode markup. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b0e43bafc9e14e439a404a1f5b9f25b90d2a1629?hp=e70e15cc58ad1be1c10addba59d22e370852f388 Unicode markup. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31048 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/contrib/utils/convertrc/rc2xml.cpp b/contrib/utils/convertrc/rc2xml.cpp index 7cd81a8a68..9f4246b19a 100644 --- a/contrib/utils/convertrc/rc2xml.cpp +++ b/contrib/utils/convertrc/rc2xml.cpp @@ -796,8 +796,8 @@ void rc2xml::WriteLabel(wxString label) { label.Replace(_T("&"),_T("$")); // changes by MS, handle '<' '>' characters within a label. - label.Replace("<","<"); - label.Replace(">",">"); + label.Replace(_T("<"),_T("<")); + label.Replace(_T(">"),_T(">")); m_xmlfile.Write(_T("\t\t\t\n")); }