comparison src/gtkstock.c @ 12255:e0b512d67792

[gaim-migrate @ 14557] I somehow missed committing this change when I moved info.png for consistency. Sorry. Thanks to datallah for catching it. Also, a warning fix. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Tue, 29 Nov 2005 17:15:36 +0000
parents bc2b9f925979
children 3169cd6727ad
comparison
equal deleted inserted replaced
12254:95fd673021f6 12255:e0b512d67792
85 { GAIM_STOCK_IM, "buttons", "send-im.png" }, 85 { GAIM_STOCK_IM, "buttons", "send-im.png" },
86 { GAIM_STOCK_IMAGE, "buttons", "insert-image-small.png" }, 86 { GAIM_STOCK_IMAGE, "buttons", "insert-image-small.png" },
87 #if GTK_CHECK_VERSION(2,8,0) 87 #if GTK_CHECK_VERSION(2,8,0)
88 { GAIM_STOCK_INFO, NULL, GTK_STOCK_INFO }, 88 { GAIM_STOCK_INFO, NULL, GTK_STOCK_INFO },
89 #else 89 #else
90 { GAIM_STOCK_INFO, "icons", "info.png" }, 90 { GAIM_STOCK_INFO, "buttons", "info.png" },
91 #endif 91 #endif
92 { GAIM_STOCK_INVITE, NULL, GTK_STOCK_JUMP_TO }, 92 { GAIM_STOCK_INVITE, NULL, GTK_STOCK_JUMP_TO },
93 { GAIM_STOCK_LINK, "buttons", "insert-link-small.png" }, 93 { GAIM_STOCK_LINK, "buttons", "insert-link-small.png" },
94 { GAIM_STOCK_LOG, NULL, GTK_STOCK_DND_MULTIPLE }, 94 { GAIM_STOCK_LOG, NULL, GTK_STOCK_DND_MULTIPLE },
95 { GAIM_STOCK_LOGO, "gaim", "logo.png" }, 95 { GAIM_STOCK_LOGO, "gaim", "logo.png" },
211 void 211 void
212 gaim_gtk_stock_init(void) 212 gaim_gtk_stock_init(void)
213 { 213 {
214 static gboolean stock_initted = FALSE; 214 static gboolean stock_initted = FALSE;
215 GtkIconFactory *icon_factory; 215 GtkIconFactory *icon_factory;
216 int i; 216 size_t i;
217 GtkWidget *win; 217 GtkWidget *win;
218 218
219 if (stock_initted) 219 if (stock_initted)
220 return; 220 return;
221 221