X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/066f3611df971be93b2ec46b82c2f05f3ff9a422..4d2df97f6c86982383f1fb4beb45d66ab1e41879:/include/wx/intl.h diff --git a/include/wx/intl.h b/include/wx/intl.h index 4a996c086b..6f297c89e9 100644 --- a/include/wx/intl.h +++ b/include/wx/intl.h @@ -48,7 +48,7 @@ enum wxLayoutDirection // another one which just marks the strings for extraction, but doesn't // perform the translation (use -kwxTRANSLATE with xgettext!) -#define wxTRANSLATE(str) (str) +#define wxTRANSLATE(str) str // ---------------------------------------------------------------------------- // forward decls @@ -605,7 +605,7 @@ inline const wxString& wxGetTranslation(const wxString& str1, #define wxPLURAL(sing, plur, n) ((n) == 1 ? (sing) : (plur)) #endif -#define wxTRANSLATE(str) (str) +#define wxTRANSLATE(str) str // NB: we use a template here in order to avoid using // wxLocale::GetUntranslatedString() above, which would be required if