From 84fa2eebd2bbed4877e0f62dd40a544114cffb1c Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 11 May 2007 22:39:15 +0000 Subject: [PATCH] translate the 'About' string (patch 1717088) [backport from HEAD] git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@45979 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/aboutdlg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msw/aboutdlg.cpp b/src/msw/aboutdlg.cpp index f951d79113..1d8823b816 100644 --- a/src/msw/aboutdlg.cpp +++ b/src/msw/aboutdlg.cpp @@ -58,7 +58,7 @@ void wxAboutBox(const wxAboutDialogInfo& info) // add everything remaining msg << info.GetDescriptionAndCredits(); - wxMessageBox(msg, _T("About ") + name); + wxMessageBox(msg, _("About ") + name); } else // simple "native" version is not enough {