From c3fd66172206768aba5a5841556463521fd1e543 Mon Sep 17 00:00:00 2001 From: =?UTF-8?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/branches/WX_2_4_BRANCH@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 2c7023bb01..f565a144cd 100644 --- a/include/wx/intl.h +++ b/include/wx/intl.h @@ -526,7 +526,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)