aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-05-16 23:40:21 +0800
committerEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-05-16 23:40:21 +0800
commita9910c1393f9a39d8f29b9470554dd22aa3d0c79 (patch)
treeb19440a5d3109bc720c9b562fe90c28127e23925 /src
parent7c3f55a686d718d4420852693f4d95f097675fdd (diff)
downloadgsoc2013-empathy-a9910c1393f9a39d8f29b9470554dd22aa3d0c79.tar
gsoc2013-empathy-a9910c1393f9a39d8f29b9470554dd22aa3d0c79.tar.gz
gsoc2013-empathy-a9910c1393f9a39d8f29b9470554dd22aa3d0c79.tar.bz2
gsoc2013-empathy-a9910c1393f9a39d8f29b9470554dd22aa3d0c79.tar.lz
gsoc2013-empathy-a9910c1393f9a39d8f29b9470554dd22aa3d0c79.tar.xz
gsoc2013-empathy-a9910c1393f9a39d8f29b9470554dd22aa3d0c79.tar.zst
gsoc2013-empathy-a9910c1393f9a39d8f29b9470554dd22aa3d0c79.zip
CallHandler: emit signal with the correct parameters
Diffstat (limited to 'src')
-rw-r--r--src/empathy-call-handler.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/empathy-call-handler.c b/src/empathy-call-handler.c
index 56d109838..32164415f 100644
--- a/src/empathy-call-handler.c
+++ b/src/empathy-call-handler.c
@@ -179,7 +179,8 @@ on_call_invalidated_cb (TpyCallChannel *call,
if (priv->call == call)
{
/* Invalidated unexpectedly? Fake call ending */
- g_signal_emit (self, signals[STATE_CHANGED], 0, TPY_CALL_STATE_ENDED);
+ g_signal_emit (self, signals[STATE_CHANGED], 0,
+ TPY_CALL_STATE_ENDED, NULL);
tp_clear_object (&priv->call);
tp_clear_object (&priv->tfchannel);
}