From 2765cbb5aa9f5224ec5b78be6c7137d9cb63fdd3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Tue, 1 May 2007 21:13:56 +0000 Subject: [PATCH] define wxPLURAL even if wxUSE_INTL=0 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45739 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/intl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/wx/intl.h b/include/wx/intl.h index ba26a16295..615634da7a 100644 --- a/include/wx/intl.h +++ b/include/wx/intl.h @@ -591,6 +591,7 @@ inline const wxString& wxGetTranslation(const wxString& str1, #if !defined(_) #define _(s) (_T(s)) #endif + #define wxPLURAL(sing, plur, n) ((n) == 1 ? _T(sing) : _T(plur)) #endif #define wxTRANSLATE(str) _T(str) -- 2.45.2