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