diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-03-25 16:53:59 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-03-25 16:53:59 +0800 |
commit | 9d8e0c6767a613f25030f7c8898a8e7a678e0664 (patch) | |
tree | 310155b3da59ce5d5fc0d3ad70a8fe2edce67266 /libempathy-gtk/empathy-accounts-dialog.c | |
parent | 442ba1971b777a8d76589e2fb13cdb8af5a6e74a (diff) | |
download | gsoc2013-empathy-9d8e0c6767a613f25030f7c8898a8e7a678e0664.tar gsoc2013-empathy-9d8e0c6767a613f25030f7c8898a8e7a678e0664.tar.gz gsoc2013-empathy-9d8e0c6767a613f25030f7c8898a8e7a678e0664.tar.bz2 gsoc2013-empathy-9d8e0c6767a613f25030f7c8898a8e7a678e0664.tar.lz gsoc2013-empathy-9d8e0c6767a613f25030f7c8898a8e7a678e0664.tar.xz gsoc2013-empathy-9d8e0c6767a613f25030f7c8898a8e7a678e0664.tar.zst gsoc2013-empathy-9d8e0c6767a613f25030f7c8898a8e7a678e0664.zip |
Add a widget to configure SIP accounts. Fixes bug #513679 (Baptiste Mille-Mathias).
svn path=/trunk/; revision=823
Diffstat (limited to 'libempathy-gtk/empathy-accounts-dialog.c')
-rw-r--r-- | libempathy-gtk/empathy-accounts-dialog.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-accounts-dialog.c b/libempathy-gtk/empathy-accounts-dialog.c index dc2c13622..75b3c5472 100644 --- a/libempathy-gtk/empathy-accounts-dialog.c +++ b/libempathy-gtk/empathy-accounts-dialog.c @@ -281,6 +281,10 @@ accounts_dialog_update_account (EmpathyAccountsDialog *dialog, dialog->settings_widget = empathy_account_widget_yahoo_new (account); } + else if (!tp_strdiff (config_ui, "sofiasip")) { + dialog->settings_widget = + empathy_account_widget_sip_new (account); + } else { dialog->settings_widget = empathy_account_widget_generic_new (account); |