aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-05-17 18:43:39 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-05-30 18:15:49 +0800
commitde0dd5093afcb898eaad92d0f15f6a342deda980 (patch)
treebe28db1d4a0f11778a800ad886f0a0c5a52e9d93 /libempathy
parent920122ee2e7be94a844d8f6736df2aab9f688a1d (diff)
downloadgsoc2013-empathy-de0dd5093afcb898eaad92d0f15f6a342deda980.tar
gsoc2013-empathy-de0dd5093afcb898eaad92d0f15f6a342deda980.tar.gz
gsoc2013-empathy-de0dd5093afcb898eaad92d0f15f6a342deda980.tar.bz2
gsoc2013-empathy-de0dd5093afcb898eaad92d0f15f6a342deda980.tar.lz
gsoc2013-empathy-de0dd5093afcb898eaad92d0f15f6a342deda980.tar.xz
gsoc2013-empathy-de0dd5093afcb898eaad92d0f15f6a342deda980.tar.zst
gsoc2013-empathy-de0dd5093afcb898eaad92d0f15f6a342deda980.zip
use tp_channel_dispatch_operation_claim_async() (#650386)
Diffstat (limited to 'libempathy')
-rw-r--r--libempathy/empathy-auth-factory.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libempathy/empathy-auth-factory.c b/libempathy/empathy-auth-factory.c
index 36f7fda55..56b3b73eb 100644
--- a/libempathy/empathy-auth-factory.c
+++ b/libempathy/empathy-auth-factory.c
@@ -344,7 +344,7 @@ claim_cb (GObject *source,
ObserveChannelsData *data = user_data;
GError *error = NULL;
- if (!tp_channel_dispatch_operation_claim_finish (
+ if (!tp_channel_dispatch_operation_claim_with_finish (
TP_CHANNEL_DISPATCH_OPERATION (source), result, &error))
{
DEBUG ("Failed to call Claim: %s", error->message);
@@ -388,8 +388,8 @@ get_password_cb (GObject *source,
DEBUG ("We have a password for account %s, calling Claim",
tp_proxy_get_object_path (source));
- tp_channel_dispatch_operation_claim_async (data->dispatch_operation,
- claim_cb, data);
+ tp_channel_dispatch_operation_claim_with_async (data->dispatch_operation,
+ TP_BASE_CLIENT (data->self), claim_cb, data);
tp_observe_channels_context_accept (data->context);
}