fixed wxPLURAL definition in wxUSE_INTL=0 case to work in Unicode build
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@45738 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -592,7 +592,7 @@ wxGetTranslation(const wxChar *sz1, const wxChar *sz2,
|
||||
#if !defined(_)
|
||||
#define _(s) (_T(s))
|
||||
#endif
|
||||
#define wxPLURAL(sing, plur, n) ((n) == 1 ? (sing) : (plur))
|
||||
#define wxPLURAL(sing, plur, n) ((n) == 1 ? _T(sing) : _T(plur))
|
||||
#endif
|
||||
|
||||
#define wxTRANSLATE(str) _T(str)
|
||||
|
Reference in New Issue
Block a user