comparison pidgin/gtkdocklet-gtk.c @ 29802:5434f768917b

Get rid of a few version checks that we no longer need now that we depend on newer stuff. Can also get rid of gtkdocklet-x11.c, apparently.
author Mark Doliner <mark@kingant.net>
date Fri, 19 Feb 2010 08:54:11 +0000
parents 5a6c66d4de94
children fb0245b8c177
comparison
equal deleted inserted replaced
29801:222a1654d9b9 29802:5434f768917b
23 #include "pidgin.h" 23 #include "pidgin.h"
24 #include "debug.h" 24 #include "debug.h"
25 #include "prefs.h" 25 #include "prefs.h"
26 #include "pidginstock.h" 26 #include "pidginstock.h"
27 #include "gtkdocklet.h" 27 #include "gtkdocklet.h"
28
29 #if GTK_CHECK_VERSION(2,10,0)
30 28
31 /* globals */ 29 /* globals */
32 GtkStatusIcon *docklet = NULL; 30 GtkStatusIcon *docklet = NULL;
33 31
34 static void 32 static void
153 { 151 {
154 pidgin_docklet_set_ui_ops(&ui_ops); 152 pidgin_docklet_set_ui_ops(&ui_ops);
155 gtk_icon_theme_append_search_path(gtk_icon_theme_get_default(), 153 gtk_icon_theme_append_search_path(gtk_icon_theme_get_default(),
156 DATADIR G_DIR_SEPARATOR_S "pixmaps" G_DIR_SEPARATOR_S "pidgin" G_DIR_SEPARATOR_S "tray"); 154 DATADIR G_DIR_SEPARATOR_S "pixmaps" G_DIR_SEPARATOR_S "pidgin" G_DIR_SEPARATOR_S "tray");
157 } 155 }
158
159 #endif /* GTK_CHECK_VERSION(2,10,0) */
160