summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-05-16 16:40:21 +0100
committerEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-05-16 16:40:21 +0100
commita9910c1393f9a39d8f29b9470554dd22aa3d0c79 (patch)
treeb19440a5d3109bc720c9b562fe90c28127e23925
parent7c3f55a686d718d4420852693f4d95f097675fdd (diff)
downloadempathy-a9910c1393f9a39d8f29b9470554dd22aa3d0c79.tar.gz
CallHandler: emit signal with the correct parameters
-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);
}