]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/intl.h
Added zillions of #if wxUSE_XXX
[wxWidgets.git] / include / wx / intl.h
index e18303f019b6a8978ebc19a4433ff176711924b7..2a8ccef47b8fc5bcadd611795992d1d68f3cd978 100644 (file)
@@ -19,6 +19,8 @@
 #include "wx/defs.h"
 #include "wx/string.h"
 
+#if wxUSE_INTL
+
 // ============================================================================
 // global decls
 // ============================================================================
@@ -137,5 +139,15 @@ inline const wxMB2WXbuf wxGetTranslation(const wxChar *sz)
         return (const wxMB2WXbuf)sz;
 }
 
+#else // !wxUSE_INTL
+
+#ifndef WXINTL_NO_GETTEXT_MACRO
+    #define   _(str)  (str)
+#endif
+
+inline const wxChar *wxGetTranslation(const wxChar *sz) { return sz; }
+
+#endif // wxUSE_INTL/!wxUSE_INTL
+
 #endif
     // _WX_INTLH__