]> git.0d.be Git - empathy.git/commitdiff
CallHandler: emit signal with the correct parameters
authorEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>
Mon, 16 May 2011 15:40:21 +0000 (16:40 +0100)
committerEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>
Thu, 9 Jun 2011 09:20:08 +0000 (10:20 +0100)
src/empathy-call-handler.c

index aff96bd6e9bb8a6988e13cc6f05195b84be385fd..f509e5213a0e17163c84cb54d1fa53d43aeaa44e 100644 (file)
@@ -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);
     }