diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-02-20 23:51:45 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-02-20 23:51:45 +0800 |
commit | f2411ed2aa83dcce8c90f522610a0e6b1b163ecf (patch) | |
tree | f50f425c64bc6b2a96c864416499eeb2cc9d39bc /libempathy-gtk/empathy-accounts-dialog.c | |
parent | b475eb55433973617e174bf32a41f5056c8a377c (diff) | |
download | gsoc2013-empathy-f2411ed2aa83dcce8c90f522610a0e6b1b163ecf.tar gsoc2013-empathy-f2411ed2aa83dcce8c90f522610a0e6b1b163ecf.tar.gz gsoc2013-empathy-f2411ed2aa83dcce8c90f522610a0e6b1b163ecf.tar.bz2 gsoc2013-empathy-f2411ed2aa83dcce8c90f522610a0e6b1b163ecf.tar.lz gsoc2013-empathy-f2411ed2aa83dcce8c90f522610a0e6b1b163ecf.tar.xz gsoc2013-empathy-f2411ed2aa83dcce8c90f522610a0e6b1b163ecf.tar.zst gsoc2013-empathy-f2411ed2aa83dcce8c90f522610a0e6b1b163ecf.zip |
Add a GUI to configure yahoo accounts. Fixes bug #513674 (Susana).
svn path=/trunk/; revision=658
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 2131c9f18..e8f8efd80 100644 --- a/libempathy-gtk/empathy-accounts-dialog.c +++ b/libempathy-gtk/empathy-accounts-dialog.c @@ -278,6 +278,10 @@ accounts_dialog_update_account (EmpathyAccountsDialog *dialog, dialog->settings_widget = empathy_account_widget_icq_new (account); } + else if (!tp_strdiff (config_ui, "yahoo")) { + dialog->settings_widget = + empathy_account_widget_yahoo_new (account); + } else { dialog->settings_widget = empathy_account_widget_generic_new (account); |