diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2009-06-05 20:58:40 +0800 |
---|---|---|
committer | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2009-06-05 20:58:40 +0800 |
commit | 0f77bf449105bd33390e1ba88d51b2e8f2993770 (patch) | |
tree | 04a6740cb375c75bb9453d647747cf9f524790bd /src | |
parent | 60fc555a09b01a7bb7b974c3d875eab0ba66f0d3 (diff) | |
download | gsoc2013-empathy-0f77bf449105bd33390e1ba88d51b2e8f2993770.tar gsoc2013-empathy-0f77bf449105bd33390e1ba88d51b2e8f2993770.tar.gz gsoc2013-empathy-0f77bf449105bd33390e1ba88d51b2e8f2993770.tar.bz2 gsoc2013-empathy-0f77bf449105bd33390e1ba88d51b2e8f2993770.tar.lz gsoc2013-empathy-0f77bf449105bd33390e1ba88d51b2e8f2993770.tar.xz gsoc2013-empathy-0f77bf449105bd33390e1ba88d51b2e8f2993770.tar.zst gsoc2013-empathy-0f77bf449105bd33390e1ba88d51b2e8f2993770.zip |
Update the accounts dialog to the new profile chooser API.
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-accounts-dialog.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c index e311ac637..dcf6bcc96 100644 --- a/src/empathy-accounts-dialog.c +++ b/src/empathy-accounts-dialog.c @@ -183,7 +183,8 @@ accounts_dialog_update_account (EmpathyAccountsDialog *dialog, accounts_dialog_model_select_first (dialog); return; } - if (empathy_profile_chooser_n_profiles (dialog->combobox_profile) > 0) { + if (empathy_profile_chooser_n_profiles ( + EMPATHY_PROFILE_CHOOSER (dialog->combobox_profile)) > 0) { /* We have no account configured but we have some * profiles instsalled. The user obviously wants to add * an account. Click on the Add button for him. */ @@ -819,7 +820,8 @@ accounts_dialog_button_create_clicked_cb (GtkWidget *button, gchar *str; McProfileCapabilityFlags cap; - profile = empathy_profile_chooser_dup_selected (dialog->combobox_profile); + profile = empathy_profile_chooser_dup_selected ( + EMPATHY_PROFILE_CHOOSER (dialog->combobox_profile)); /* Create account */ account = mc_account_create (profile); @@ -870,7 +872,8 @@ accounts_dialog_profile_changed_cb (GtkWidget *widget, McProfile *profile; McProfileCapabilityFlags cap; - profile = empathy_profile_chooser_dup_selected (dialog->combobox_profile); + profile = empathy_profile_chooser_dup_selected ( + EMPATHY_PROFILE_CHOOSER (dialog->combobox_profile)); cap = mc_profile_get_capabilities (profile); if (cap & MC_PROFILE_CAPABILITY_REGISTRATION_UI) { |