diff -r 1bf8b6ef5aea -r 23b59a16c808 pidgin/plugins/gevolution/add_buddy_dialog.c --- a/pidgin/plugins/gevolution/add_buddy_dialog.c Sat Aug 17 23:28:51 2013 +0530 +++ b/pidgin/plugins/gevolution/add_buddy_dialog.c Sun Aug 18 00:04:13 2013 +0530 @@ -32,7 +32,7 @@ enum { COLUMN_NAME, - COLUMN_PRPL_ICON, + COLUMN_PROTOCOL_ICON, COLUMN_USERNAME, COLUMN_DATA, NUM_COLUMNS @@ -147,7 +147,7 @@ renderer = gtk_cell_renderer_pixbuf_new(); gtk_tree_view_column_pack_start(column, renderer, FALSE); gtk_tree_view_column_add_attribute(column, renderer, - "pixbuf", COLUMN_PRPL_ICON); + "pixbuf", COLUMN_PROTOCOL_ICON); /* Account name */ renderer = gtk_cell_renderer_text_new(); @@ -183,7 +183,7 @@ if (account == NULL) return; - pixbuf = pidgin_create_prpl_icon(account, PIDGIN_PRPL_ICON_SMALL); + pixbuf = pidgin_create_protocol_icon(account, PIDGIN_PROTOCOL_ICON_SMALL); for (l = list; l != NULL; l = l->next) { @@ -199,7 +199,7 @@ gtk_list_store_set(dialog->model, &iter, COLUMN_NAME, name, - COLUMN_PRPL_ICON, pixbuf, + COLUMN_PROTOCOL_ICON, pixbuf, COLUMN_USERNAME, account_name, COLUMN_DATA, contact, -1); @@ -602,13 +602,13 @@ GdkPixbuf *pixbuf; GtkTreeIter iter; - pixbuf = pidgin_create_prpl_icon(account, PIDGIN_PRPL_ICON_SMALL); + pixbuf = pidgin_create_protocol_icon(account, PIDGIN_PROTOCOL_ICON_SMALL); gtk_list_store_append(dialog->model, &iter); gtk_list_store_set(dialog->model, &iter, COLUMN_NAME, name, - COLUMN_PRPL_ICON, pixbuf, + COLUMN_PROTOCOL_ICON, pixbuf, COLUMN_DATA, contact, COLUMN_USERNAME, screenname, -1);