diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2009-07-24 01:23:27 +0800 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2009-07-30 06:13:19 +0800 |
commit | 113d262b56effb7927d310ca90db3da5840e2dc9 (patch) | |
tree | 492de918bf843853822bf71d8e715d6fddf18c38 /src | |
parent | 9b7a3c09518ca7fee43c0c8941a0c1d49261871e (diff) | |
download | gsoc2013-empathy-113d262b56effb7927d310ca90db3da5840e2dc9.tar gsoc2013-empathy-113d262b56effb7927d310ca90db3da5840e2dc9.tar.gz gsoc2013-empathy-113d262b56effb7927d310ca90db3da5840e2dc9.tar.bz2 gsoc2013-empathy-113d262b56effb7927d310ca90db3da5840e2dc9.tar.lz gsoc2013-empathy-113d262b56effb7927d310ca90db3da5840e2dc9.tar.xz gsoc2013-empathy-113d262b56effb7927d310ca90db3da5840e2dc9.tar.zst gsoc2013-empathy-113d262b56effb7927d310ca90db3da5840e2dc9.zip |
Make remove work
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-accounts-dialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c index 6ac9eb352..3b5386606 100644 --- a/src/empathy-accounts-dialog.c +++ b/src/empathy-accounts-dialog.c @@ -1142,7 +1142,7 @@ accounts_dialog_button_remove_clicked_cb (GtkWidget *button, res = gtk_dialog_run (GTK_DIALOG (message_dialog)); if (res == GTK_RESPONSE_YES) { - empathy_account_manager_remove (priv->account_manager, account); + accounts_dialog_model_remove_selected (dialog); accounts_dialog_model_select_first (dialog); } gtk_widget_destroy (message_dialog); |