aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-keyring.h
diff options
context:
space:
mode:
authorJonny Lamb <jonnylamb@gnome.org>2011-01-28 21:52:26 +0800
committerJonny Lamb <jonnylamb@gnome.org>2011-01-28 21:52:26 +0800
commita8e29279f323a5a1f4fc66a450a633b3415bea4d (patch)
treeb54612258a7bccfdc836bad2767b553994cd24d2 /libempathy/empathy-keyring.h
parentfe7c6ed34c96c0b57b0294ccebdab20dd0b702ba (diff)
downloadgsoc2013-empathy-a8e29279f323a5a1f4fc66a450a633b3415bea4d.tar
gsoc2013-empathy-a8e29279f323a5a1f4fc66a450a633b3415bea4d.tar.gz
gsoc2013-empathy-a8e29279f323a5a1f4fc66a450a633b3415bea4d.tar.bz2
gsoc2013-empathy-a8e29279f323a5a1f4fc66a450a633b3415bea4d.tar.lz
gsoc2013-empathy-a8e29279f323a5a1f4fc66a450a633b3415bea4d.tar.xz
gsoc2013-empathy-a8e29279f323a5a1f4fc66a450a633b3415bea4d.tar.zst
gsoc2013-empathy-a8e29279f323a5a1f4fc66a450a633b3415bea4d.zip
keyring: rename current functions to be more specifically about account passwords
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
Diffstat (limited to 'libempathy/empathy-keyring.h')
-rw-r--r--libempathy/empathy-keyring.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/libempathy/empathy-keyring.h b/libempathy/empathy-keyring.h
index 000f987f7..e4211671a 100644
--- a/libempathy/empathy-keyring.h
+++ b/libempathy/empathy-keyring.h
@@ -25,23 +25,23 @@
G_BEGIN_DECLS
-void empathy_keyring_get_password_async (TpAccount *account,
+void empathy_keyring_get_account_password_async (TpAccount *account,
GAsyncReadyCallback callback, gpointer user_data);
-const gchar * empathy_keyring_get_password_finish (TpAccount *account,
+const gchar * empathy_keyring_get_account_password_finish (TpAccount *account,
GAsyncResult *result, GError **error);
-void empathy_keyring_set_password_async (TpAccount *account,
+void empathy_keyring_set_account_password_async (TpAccount *account,
const gchar *password, GAsyncReadyCallback callback,
gpointer user_data);
-gboolean empathy_keyring_set_password_finish (TpAccount *account,
+gboolean empathy_keyring_set_account_password_finish (TpAccount *account,
GAsyncResult *result, GError **error);
-void empathy_keyring_delete_password_async (TpAccount *account,
+void empathy_keyring_delete_account_password_async (TpAccount *account,
GAsyncReadyCallback callback, gpointer user_data);
-gboolean empathy_keyring_delete_password_finish (TpAccount *account,
+gboolean empathy_keyring_delete_account_password_finish (TpAccount *account,
GAsyncResult *result, GError **error);
G_END_DECLS