don't use \u escapes, VC6 doesn't understand them
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57514 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -100,8 +100,9 @@ wxString wxAboutDialogInfo::GetCopyrightToDisplay() const
|
|||||||
{
|
{
|
||||||
wxString ret = m_copyright;
|
wxString ret = m_copyright;
|
||||||
|
|
||||||
ret.Replace("(c)", "\u00A9");
|
const wxString copyrightSign = wxString::FromUTF8("\xc2\xa9");
|
||||||
ret.Replace("(C)", "\u00A9");
|
ret.Replace("(c)", copyrightSign);
|
||||||
|
ret.Replace("(C)", copyrightSign);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user