| 254 pidgin_blist_setup_sort_methods(); |
266 pidgin_blist_setup_sort_methods(); |
| 255 |
267 |
| 256 #ifndef _WIN32 |
268 #ifndef _WIN32 |
| 257 /* use the nice PNG icon for all the windows */ |
269 /* use the nice PNG icon for all the windows */ |
| 258 for(i=0; i<G_N_ELEMENTS(icon_sizes); i++) { |
270 for(i=0; i<G_N_ELEMENTS(icon_sizes); i++) { |
| |
271 <<<<<<< variant A |
| 259 icon_path = g_build_filename(DATADIR, "icons", "hicolor", icon_sizes[i], "apps", "pidgin.png", NULL); |
272 icon_path = g_build_filename(DATADIR, "icons", "hicolor", icon_sizes[i], "apps", "pidgin.png", NULL); |
| |
273 >>>>>>> variant B |
| |
274 icon_path = g_build_filename(DATADIR, "pixmaps", "icons", "hicolor", icon_sizes[i], "apps", "pidgin.png", NULL); |
| |
275 ####### Ancestor |
| |
276 icon_path = g_build_filename(DATADIR, "pixmaps", "pidgin", "icons", icon_sizes[i], "pidgin.png", NULL); |
| |
277 ======= end |
| 260 icon = gdk_pixbuf_new_from_file(icon_path, NULL); |
278 icon = gdk_pixbuf_new_from_file(icon_path, NULL); |
| 261 g_free(icon_path); |
279 g_free(icon_path); |
| 262 if (icon) { |
280 if (icon) { |
| 263 icons = g_list_append(icons,icon); |
281 icons = g_list_append(icons,icon); |
| 264 } else { |
282 } else { |