From 05661398f75603bf09a8e7042a3ba8e056a9217f Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Wed, 18 Jul 2012 15:44:31 +0200 Subject: account-plugins: implement delete https://bugzilla.gnome.org/show_bug.cgi?id=680448 --- .../cc-plugins/empathy-accounts-plugin.c | 30 +++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/ubuntu-online-accounts/cc-plugins/empathy-accounts-plugin.c b/ubuntu-online-accounts/cc-plugins/empathy-accounts-plugin.c index cbbe90b3e..858ef65e1 100644 --- a/ubuntu-online-accounts/cc-plugins/empathy-accounts-plugin.c +++ b/ubuntu-online-accounts/cc-plugins/empathy-accounts-plugin.c @@ -46,12 +46,40 @@ empathy_accounts_plugin_build_widget (ApPlugin *plugin) return widget; } +static void +store_delete_cb (AgAccount *account, + const GError *error, + gpointer user_data) +{ + GSimpleAsyncResult *result = user_data; + + if (error != NULL) + { + g_debug ("Failed to delete account with ID '%u': %s", + account->id, error->message); + + g_simple_async_result_set_from_error (result, error); + } + + g_simple_async_result_complete (result); + g_object_unref (result); +} + static void empathy_accounts_plugin_delete_account (ApPlugin *plugin, GAsyncReadyCallback callback, gpointer user_data) { - /* TODO */ + AgAccount *account; + GSimpleAsyncResult *result; + + result = g_simple_async_result_new (G_OBJECT (plugin), + callback, user_data, ap_plugin_delete_account); + + account = ap_plugin_get_account (plugin); + + ag_account_delete (account); + ag_account_store (account, store_delete_cb, result); } static void -- cgit v1.2.3