From: <the...@us...> - 2006-08-21 22:56:17
|
Revision: 16965 Author: thekingant Date: 2006-08-21 15:56:08 -0700 (Mon, 21 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16965&view=rev Log Message: ----------- Change the placeholder variable from x to String to match the other #defines. This is purely a cosmetic change Modified Paths: -------------- trunk/libgaim/internal.h Modified: trunk/libgaim/internal.h =================================================================== --- trunk/libgaim/internal.h 2006-08-21 22:55:08 UTC (rev 16964) +++ trunk/libgaim/internal.h 2006-08-21 22:56:08 UTC (rev 16965) @@ -43,7 +43,7 @@ #ifdef ENABLE_NLS # include <locale.h> # include <libintl.h> -# define _(x) ((const char *)gettext(x)) +# define _(String) ((const char *)gettext(String)) # ifdef gettext_noop # define N_(String) gettext_noop (String) # else @@ -53,7 +53,7 @@ # include <locale.h> # define N_(String) (String) # ifndef _ -# define _(x) ((const char *)x) +# define _(String) ((const char *)String) # endif # define ngettext(Singular, Plural, Number) ((Number == 1) ? ((const char *)Singular) : ((const char *)Plural)) #endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |