comparison pidgin/gtkimhtml.c @ 18220:4eb0a18484cc

Kill a compile warning, as we now include internal.h in gtkimhtml.c, we don't need to define _ here too.
author Stu Tomlinson <stu@nosnilmot.com>
date Thu, 21 Jun 2007 11:37:19 +0000
parents b8572b937c09
children db4b0aa4ed8c d28015a513a9
comparison
equal deleted inserted replaced
18219:b96ea6cbc22c 18220:4eb0a18484cc
50 #include <locale.h> 50 #include <locale.h>
51 #endif 51 #endif
52 #ifdef _WIN32 52 #ifdef _WIN32
53 #include <gdk/gdkwin32.h> 53 #include <gdk/gdkwin32.h>
54 #include <windows.h> 54 #include <windows.h>
55 #endif
56
57 #ifdef ENABLE_NLS
58 # include <libintl.h>
59 # define _(x) gettext(x)
60 # ifdef gettext_noop
61 # define N_(String) gettext_noop (String)
62 # else
63 # define N_(String) (String)
64 # endif
65 #else
66 # define N_(String) (String)
67 # define _(x) (x)
68 #endif 55 #endif
69 56
70 #include <pango/pango-font.h> 57 #include <pango/pango-font.h>
71 58
72 /* GTK+ < 2.4.x hack, see pidgin.h for details. */ 59 /* GTK+ < 2.4.x hack, see pidgin.h for details. */