[empathy] account-plugins: implement delete
- From: Guillaume Desmottes <gdesmott src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [empathy] account-plugins: implement delete
- Date: Tue, 24 Jul 2012 14:38:14 +0000 (UTC)
commit 05661398f75603bf09a8e7042a3ba8e056a9217f
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date: Wed Jul 18 15:44:31 2012 +0200
account-plugins: implement delete
https://bugzilla.gnome.org/show_bug.cgi?id=680448
.../cc-plugins/empathy-accounts-plugin.c | 30 +++++++++++++++++++-
1 files changed, 29 insertions(+), 1 deletions(-)
---
diff --git a/ubuntu-online-accounts/cc-plugins/empathy-accounts-plugin.c b/ubuntu-online-accounts/cc-plugins/empathy-accounts-plugin.c
index cbbe90b..858ef65 100644
--- a/ubuntu-online-accounts/cc-plugins/empathy-accounts-plugin.c
+++ b/ubuntu-online-accounts/cc-plugins/empathy-accounts-plugin.c
@@ -47,11 +47,39 @@ empathy_accounts_plugin_build_widget (ApPlugin *plugin)
}
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
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]