| 2133 const char *path; |
2133 const char *path; |
| 2134 |
2134 |
| 2135 gtk_list_store_clear(dialog->model); |
2135 gtk_list_store_clear(dialog->model); |
| 2136 |
2136 |
| 2137 if ((path = purple_prefs_get_path(PIDGIN_PREFS_ROOT "/accounts/buddyicon")) != NULL) { |
2137 if ((path = purple_prefs_get_path(PIDGIN_PREFS_ROOT "/accounts/buddyicon")) != NULL) { |
| 2138 GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file(path, NULL); |
2138 GdkPixbuf *pixbuf = pidgin_pixbuf_new_from_file(path); |
| 2139 if (pixbuf != NULL) { |
2139 if (pixbuf != NULL) { |
| 2140 global_buddyicon = gdk_pixbuf_scale_simple(pixbuf, 22, 22, GDK_INTERP_HYPER); |
2140 global_buddyicon = gdk_pixbuf_scale_simple(pixbuf, 22, 22, GDK_INTERP_HYPER); |
| 2141 g_object_unref(G_OBJECT(pixbuf)); |
2141 g_object_unref(G_OBJECT(pixbuf)); |
| 2142 } |
2142 } |
| 2143 } |
2143 } |