summaryrefslogtreecommitdiff
path: root/tp-account-widgets/tpaw-keyring.c
diff options
context:
space:
mode:
authorMarco Barisione <marco.barisione@collabora.co.uk>2013-05-09 17:10:17 +0100
committerMarco Barisione <marco.barisione@collabora.co.uk>2013-08-20 11:03:06 +0100
commit431c21692c396b39764eca31c3c4f05f4507ce59 (patch)
treea9f8fc0fa9ca7ee6255df908f9f1ef2059ac5875 /tp-account-widgets/tpaw-keyring.c
parentfad2ecd3f071c671425954638081c641ff603503 (diff)
downloadtelepathy-account-widgets-431c21692c396b39764eca31c3c4f05f4507ce59.tar.gz
tpaw-utils: move empathy_implement_finish_* to tp-aw and rename them
All the code was initially written for wocky which is under LGPL. https://bugzilla.gnome.org/show_bug.cgi?id=699492
Diffstat (limited to 'tp-account-widgets/tpaw-keyring.c')
-rw-r--r--tp-account-widgets/tpaw-keyring.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/tp-account-widgets/tpaw-keyring.c b/tp-account-widgets/tpaw-keyring.c
index 94bbd93e..0de6f8b5 100644
--- a/tp-account-widgets/tpaw-keyring.c
+++ b/tp-account-widgets/tpaw-keyring.c
@@ -33,6 +33,7 @@
#endif
#include "empathy-utils.h"
+#include "tpaw-utils.h"
#define DEBUG_FLAG EMPATHY_DEBUG_OTHER
#include "empathy-debug.h"
@@ -324,7 +325,7 @@ tpaw_keyring_get_account_password_finish (TpAccount *account,
GAsyncResult *result,
GError **error)
{
- empathy_implement_finish_return_pointer (account,
+ tpaw_implement_finish_return_pointer (account,
tpaw_keyring_get_account_password_async);
}
@@ -333,7 +334,7 @@ tpaw_keyring_get_room_password_finish (TpAccount *account,
GAsyncResult *result,
GError **error)
{
- empathy_implement_finish_return_pointer (account,
+ tpaw_implement_finish_return_pointer (account,
tpaw_keyring_get_room_password_async);
}
@@ -637,7 +638,7 @@ tpaw_keyring_set_account_password_finish (TpAccount *account,
GAsyncResult *result,
GError **error)
{
- empathy_implement_finish_void (account, tpaw_keyring_set_account_password_async);
+ tpaw_implement_finish_void (account, tpaw_keyring_set_account_password_async);
}
gboolean
@@ -645,7 +646,7 @@ tpaw_keyring_set_room_password_finish (TpAccount *account,
GAsyncResult *result,
GError **error)
{
- empathy_implement_finish_void (account, tpaw_keyring_set_room_password_async);
+ tpaw_implement_finish_void (account, tpaw_keyring_set_room_password_async);
}
/* delete */
@@ -716,5 +717,5 @@ tpaw_keyring_delete_account_password_finish (TpAccount *account,
GAsyncResult *result,
GError **error)
{
- empathy_implement_finish_void (account, tpaw_keyring_delete_account_password_async);
+ tpaw_implement_finish_void (account, tpaw_keyring_delete_account_password_async);
}