aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2014-01-27 20:03:13 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2014-01-27 20:03:13 +0800
commitb9f326caa4fb29fbd7d3e8d31897da1e35815273 (patch)
tree6cc011e33ff2528281f78cc940acd2344bfcc144
parent6fbee4087b38af7aa9b3e9db445ffd53f4fb9f52 (diff)
downloadgsoc2013-empathy-b9f326caa4fb29fbd7d3e8d31897da1e35815273.tar
gsoc2013-empathy-b9f326caa4fb29fbd7d3e8d31897da1e35815273.tar.gz
gsoc2013-empathy-b9f326caa4fb29fbd7d3e8d31897da1e35815273.tar.bz2
gsoc2013-empathy-b9f326caa4fb29fbd7d3e8d31897da1e35815273.tar.lz
gsoc2013-empathy-b9f326caa4fb29fbd7d3e8d31897da1e35815273.tar.xz
gsoc2013-empathy-b9f326caa4fb29fbd7d3e8d31897da1e35815273.tar.zst
gsoc2013-empathy-b9f326caa4fb29fbd7d3e8d31897da1e35815273.zip
call-window: use HandleWithTime()
Makes transition to next easier as HandleWith() is going to always have the 'time' argument.
-rw-r--r--src/empathy-call-window.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c
index 077cbe312..7371abdf9 100644
--- a/src/empathy-call-window.c
+++ b/src/empathy-call-window.c
@@ -1510,8 +1510,9 @@ empathy_call_window_incoming_call_response_cb (GtkDialog *dialog,
switch (response_id)
{
case GTK_RESPONSE_ACCEPT:
- tp_channel_dispatch_operation_handle_with_async (
- self->priv->pending_cdo, EMPATHY_CALL_BUS_NAME, NULL, NULL);
+ tp_channel_dispatch_operation_handle_with_time_async (
+ self->priv->pending_cdo, EMPATHY_CALL_BUS_NAME,
+ empathy_get_current_action_time (), NULL, NULL);
tp_clear_object (&self->priv->pending_cdo);
tp_clear_object (&self->priv->pending_channel);