aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2009-09-14 18:09:25 +0800
committerCosimo Cecchi <cosimoc@gnome.org>2009-09-14 18:09:25 +0800
commit6f1ccfd73f5bc6446b50f1d557691b90b1024210 (patch)
treec615c02d2bcafe465c19b4cd9068fd0f60ea2197 /src
parent3ee3162a25751ce528cf84661b2d515820b15cfb (diff)
downloadgsoc2013-empathy-6f1ccfd73f5bc6446b50f1d557691b90b1024210.tar
gsoc2013-empathy-6f1ccfd73f5bc6446b50f1d557691b90b1024210.tar.gz
gsoc2013-empathy-6f1ccfd73f5bc6446b50f1d557691b90b1024210.tar.bz2
gsoc2013-empathy-6f1ccfd73f5bc6446b50f1d557691b90b1024210.tar.lz
gsoc2013-empathy-6f1ccfd73f5bc6446b50f1d557691b90b1024210.tar.xz
gsoc2013-empathy-6f1ccfd73f5bc6446b50f1d557691b90b1024210.tar.zst
gsoc2013-empathy-6f1ccfd73f5bc6446b50f1d557691b90b1024210.zip
Move accounts assignment after the CMS are ready
Diffstat (limited to 'src')
-rw-r--r--src/empathy-import-widget.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/empathy-import-widget.c b/src/empathy-import-widget.c
index 34f94e551..2dc810b0a 100644
--- a/src/empathy-import-widget.c
+++ b/src/empathy-import-widget.c
@@ -262,6 +262,8 @@ import_widget_set_up_account_list (EmpathyImportWidget *self)
GtkTreeViewColumn *column;
GtkCellRenderer *cell;
+ priv->accounts = empathy_import_accounts_load (priv->app_id);
+
store = gtk_list_store_new (COL_COUNT, G_TYPE_BOOLEAN, G_TYPE_STRING,
G_TYPE_STRING, G_TYPE_STRING, G_TYPE_POINTER);
@@ -416,8 +418,6 @@ do_constructed (GObject *obj)
GtkBuilder *gui;
gchar *filename;
- priv->accounts = empathy_import_accounts_load (priv->app_id);
-
filename = empathy_file_lookup ("empathy-import-dialog.ui", "src");
gui = empathy_builder_get_file (filename,
"widget_vbox", &priv->vbox,