# HG changeset patch # User Mark Doliner # Date 1156200968 0 # Node ID 594fa42a785a4c30ed0a5d09ece3ba831410c28b # Parent c590ec448bc3cd4c28b339b478415a119a0ffeff [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 diff -r c590ec448bc3 -r 594fa42a785a libgaim/internal.h --- 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 # include -# 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 # 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