From 5b05d3ee52cb31caa856c9982eaeb2fcf5b5f78e Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 23 Dec 2008 15:32:51 +0000 Subject: [PATCH] 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 --- src/generic/aboutdlgg.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/generic/aboutdlgg.cpp b/src/generic/aboutdlgg.cpp index b7a9fcf977..c6f1845ca7 100644 --- a/src/generic/aboutdlgg.cpp +++ b/src/generic/aboutdlgg.cpp @@ -100,8 +100,9 @@ wxString wxAboutDialogInfo::GetCopyrightToDisplay() const { wxString ret = m_copyright; - ret.Replace("(c)", "\u00A9"); - ret.Replace("(C)", "\u00A9"); + const wxString copyrightSign = wxString::FromUTF8("\xc2\xa9"); + ret.Replace("(c)", copyrightSign); + ret.Replace("(C)", copyrightSign); return ret; } -- 2.47.2