]> git.saurik.com Git - wxWidgets.git/commitdiff
fix _() for wxUSE_INTL==0 case
authorVáclav Slavík <vslavik@fastmail.fm>
Sun, 25 May 2003 11:18:28 +0000 (11:18 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Sun, 25 May 2003 11:18:28 +0000 (11:18 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20729 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/intl.h

index df82d4d49aef077397851f9194ce30807da7f462..aaae8d3e25defaa02b2b1bc1e86a0fab4d8c5e20 100644 (file)
@@ -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)