Mercurial > pidgin
changeset 14280:594fa42a785a
[gaim-migrate @ 16965]
Change the placeholder variable from x to String to
match the other #defines. This is purely a cosmetic
change
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Mon, 21 Aug 2006 22:56:08 +0000 |
parents | c590ec448bc3 |
children | ddedf15a9420 |
files | libgaim/internal.h |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/libgaim/internal.h Mon Aug 21 22:55:08 2006 +0000 +++ b/libgaim/internal.h Mon Aug 21 22:56:08 2006 +0000 @@ -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