diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-05-17 18:43:39 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-05-30 18:15:49 +0800 |
commit | de0dd5093afcb898eaad92d0f15f6a342deda980 (patch) | |
tree | be28db1d4a0f11778a800ad886f0a0c5a52e9d93 /src/empathy-call-observer.c | |
parent | 920122ee2e7be94a844d8f6736df2aab9f688a1d (diff) | |
download | gsoc2013-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 'src/empathy-call-observer.c')
-rw-r--r-- | src/empathy-call-observer.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/empathy-call-observer.c b/src/empathy-call-observer.c index ee8adc406..308cec22d 100644 --- a/src/empathy-call-observer.c +++ b/src/empathy-call-observer.c @@ -181,7 +181,7 @@ on_cdo_claim_cb (GObject *source_object, cdo = TP_CHANNEL_DISPATCH_OPERATION (source_object); - tp_channel_dispatch_operation_claim_finish (cdo, result, &error); + tp_channel_dispatch_operation_claim_with_finish (cdo, result, &error); if (error != NULL) { DEBUG ("Could not claim CDO: %s", error->message); @@ -227,7 +227,8 @@ cdo_prepare_cb (GObject *source_object, return; } - tp_channel_dispatch_operation_claim_async (cdo, on_cdo_claim_cb, ctx); + tp_channel_dispatch_operation_claim_with_async (cdo, + ctx->self->priv->observer, on_cdo_claim_cb, ctx); tp_observe_channels_context_accept (ctx->context); } |