From 3ead8c473e47317d9d65232942a9e0d72f0a13c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Tue, 1 May 2007 21:10:46 +0000 Subject: [PATCH] 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 --- include/wx/intl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/intl.h b/include/wx/intl.h index 15319eb79a..8b3aa2530e 100644 --- a/include/wx/intl.h +++ b/include/wx/intl.h @@ -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)