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
This commit is contained in:
Václav Slavík
2003-05-25 11:18:28 +00:00
parent ef15d07386
commit c3fd661722

View File

@@ -526,7 +526,7 @@ inline const wxChar *wxGetTranslation(const wxChar *sz)
// the macros should still be defined - otherwise compilation would fail // the macros should still be defined - otherwise compilation would fail
#if !defined(WXINTL_NO_GETTEXT_MACRO) && !defined(_) #if !defined(WXINTL_NO_GETTEXT_MACRO) && !defined(_)
#define _(str) (str) #define _(str) (_T(str))
#endif #endif
#define wxTRANSLATE(str) _T(str) #define wxTRANSLATE(str) _T(str)