diff options
Diffstat (limited to 'libempathy-gtk/empathy-accounts-dialog.c')
-rw-r--r-- | libempathy-gtk/empathy-accounts-dialog.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-accounts-dialog.c b/libempathy-gtk/empathy-accounts-dialog.c index 2a12eb1d5..3f2911972 100644 --- a/libempathy-gtk/empathy-accounts-dialog.c +++ b/libempathy-gtk/empathy-accounts-dialog.c @@ -47,6 +47,7 @@ #include "empathy-account-widget-generic.h" #include "empathy-account-widget-jabber.h" #include "empathy-account-widget-msn.h" +#include "empathy-account-widget-salut.h" #define DEBUG_DOMAIN "AccountDialog" @@ -287,6 +288,10 @@ accounts_dialog_update_account (EmpathyAccountsDialog *dialog, dialog ->settings_widget = empathy_account_widget_msn_new (account); } + else if (!empathy_strdiff (config_ui, "salut")) { + dialog->settings_widget = + empathy_account_widget_salut_new (account); + } else { dialog->settings_widget = empathy_account_widget_generic_new (account); |