[empathy: 4/12] Update the accounts dialog to the new profile chooser API.



commit 0f77bf449105bd33390e1ba88d51b2e8f2993770
Author: Jonny Lamb <jonny lamb collabora co uk>
Date:   Fri Jun 5 13:58:40 2009 +0100

    Update the accounts dialog to the new profile chooser API.
    
    Signed-off-by: Jonny Lamb <jonny lamb collabora co uk>
---
 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 e311ac6..dcf6bcc 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) {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]