]> git.saurik.com Git - wxWidgets.git/commitdiff
don't use \u escapes, VC6 doesn't understand them
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 23 Dec 2008 15:32:51 +0000 (15:32 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 23 Dec 2008 15:32:51 +0000 (15:32 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57514 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/aboutdlgg.cpp

index b7a9fcf9775109ada00a0f8dafc8a66b2706f718..c6f1845ca724fb695d389b2ba524136c50205bcf 100644 (file)
@@ -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;
 }