| 254 pidgin_blist_setup_sort_methods(); |
254 pidgin_blist_setup_sort_methods(); |
| 255 |
255 |
| 256 #ifndef _WIN32 |
256 #ifndef _WIN32 |
| 257 /* use the nice PNG icon for all the windows */ |
257 /* use the nice PNG icon for all the windows */ |
| 258 for(i=0; i<G_N_ELEMENTS(icon_sizes); i++) { |
258 for(i=0; i<G_N_ELEMENTS(icon_sizes); i++) { |
| 259 icon_path = g_build_filename(DATADIR, "pixmaps", "pidgin", "icons", icon_sizes[i], "pidgin.png", NULL); |
259 icon_path = g_build_filename(DATADIR, "icons", "hicolor", icon_sizes[i], "apps", "pidgin.png", NULL); |
| 260 icon = gdk_pixbuf_new_from_file(icon_path, NULL); |
260 icon = gdk_pixbuf_new_from_file(icon_path, NULL); |
| 261 g_free(icon_path); |
261 g_free(icon_path); |
| 262 if (icon) { |
262 if (icon) { |
| 263 icons = g_list_append(icons,icon); |
263 icons = g_list_append(icons,icon); |
| 264 } else { |
264 } else { |