aboutsummaryrefslogtreecommitdiffstats
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-06-09 17:20:08 +0800
commit11f851031af49234479be818c939c8d5edc2420b (patch)
treef7912f2e4692293eb498c74fba932c8079fbef69
parent62475a9a10093fc2ef93fcb5958c3f9dd29f28a3 (diff)
downloadgsoc2013-empathy-11f851031af49234479be818c939c8d5edc2420b.tar
gsoc2013-empathy-11f851031af49234479be818c939c8d5edc2420b.tar.gz
gsoc2013-empathy-11f851031af49234479be818c939c8d5edc2420b.tar.bz2
gsoc2013-empathy-11f851031af49234479be818c939c8d5edc2420b.tar.lz
gsoc2013-empathy-11f851031af49234479be818c939c8d5edc2420b.tar.xz
gsoc2013-empathy-11f851031af49234479be818c939c8d5edc2420b.tar.zst
gsoc2013-empathy-11f851031af49234479be818c939c8d5edc2420b.zip
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 aff96bd6e..f509e5213 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);
}