From 82c8e585f49e524e0b0c25a0729c7e9b1e327fd1 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 8 Feb 2009 14:55:44 +0000 Subject: [PATCH] add _T() to fix compilation after the last change git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@58761 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/aboutdlgg.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/generic/aboutdlgg.cpp b/src/generic/aboutdlgg.cpp index a8ba024361..fcfadadae6 100644 --- a/src/generic/aboutdlgg.cpp +++ b/src/generic/aboutdlgg.cpp @@ -102,8 +102,8 @@ wxString wxAboutDialogInfo::GetCopyrightToDisplay() const #if wxUSE_UNICODE const wxString copyrightSign = wxString::FromUTF8("\xc2\xa9"); - ret.Replace("(c)", copyrightSign); - ret.Replace("(C)", copyrightSign); + ret.Replace(_T("(c)"), copyrightSign); + ret.Replace(_T("(C)"), copyrightSign); #endif // wxUSE_UNICODE return ret;