From a58af6c844170f7451307f07a43e3416f5694ddf Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Tue, 24 Jan 2012 11:56:39 +0100 Subject: accounts-dialog: no more need to manually prepare TpAccount The factory does it for us now. https://bugzilla.gnome.org/show_bug.cgi?id=668372 --- src/empathy-accounts-dialog.c | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) (limited to 'src') diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c index 0e33de2a6..c79ac4078 100644 --- a/src/empathy-accounts-dialog.c +++ b/src/empathy-accounts-dialog.c @@ -1979,32 +1979,13 @@ accounts_dialog_add_account (EmpathyAccountsDialog *dialog, g_object_unref (settings); } -static void -account_prepare_cb (GObject *source_object, - GAsyncResult *result, - gpointer user_data) -{ - EmpathyAccountsDialog *dialog = EMPATHY_ACCOUNTS_DIALOG (user_data); - TpAccount *account = TP_ACCOUNT (source_object); - GError *error = NULL; - - if (!tp_proxy_prepare_finish (account, result, &error)) - { - DEBUG ("Failed to prepare account: %s", error->message); - g_error_free (error); - return; - } - - accounts_dialog_add_account (dialog, account); -} - static void accounts_dialog_account_validity_changed_cb (TpAccountManager *manager, TpAccount *account, gboolean valid, EmpathyAccountsDialog *dialog) { - tp_proxy_prepare_async (account, NULL, account_prepare_cb, dialog); + accounts_dialog_add_account (dialog, account); } static void -- cgit v1.2.3