From 7df93c2deb42494074cebcbc39734e94cac74461 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Sun, 25 May 2003 11:18:28 +0000 Subject: [PATCH] fix _() for wxUSE_INTL==0 case git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20729 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/intl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/intl.h b/include/wx/intl.h index df82d4d49a..aaae8d3e25 100644 --- a/include/wx/intl.h +++ b/include/wx/intl.h @@ -535,7 +535,7 @@ inline const wxChar *wxGetTranslation(const wxChar *sz) // the macros should still be defined - otherwise compilation would fail #if !defined(WXINTL_NO_GETTEXT_MACRO) && !defined(_) - #define _(str) (str) + #define _(str) (_T(str)) #endif #define wxTRANSLATE(str) _T(str) -- 2.45.2