diff options
-rw-r--r-- | src/empathy-import-widget.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/empathy-import-widget.c b/src/empathy-import-widget.c index 6a2d24a81..b65e0c0cf 100644 --- a/src/empathy-import-widget.c +++ b/src/empathy-import-widget.c @@ -99,7 +99,6 @@ import_widget_add_accounts_to_model (EmpathyImportWidget *self) { TpAccountManager *manager; GtkTreeModel *model; - GtkTreeIter iter; GList *l; EmpathyImportWidgetPriv *priv = GET_PRIV (self); gint min, natural; @@ -133,9 +132,7 @@ import_widget_add_accounts_to_model (EmpathyImportWidget *self) g_list_free (accounts); - gtk_list_store_append (GTK_LIST_STORE (model), &iter); - - gtk_list_store_set (GTK_LIST_STORE (model), &iter, + gtk_list_store_insert_with_values (GTK_LIST_STORE (model), NULL, -1, COL_IMPORT, import, COL_PROTOCOL, data->protocol, COL_NAME, g_value_get_string (value), |