aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/empathy-call-factory.c4
-rw-r--r--src/empathy-call.c1
2 files changed, 2 insertions, 3 deletions
diff --git a/src/empathy-call-factory.c b/src/empathy-call-factory.c
index 60700ac0f..972524533 100644
--- a/src/empathy-call-factory.c
+++ b/src/empathy-call-factory.c
@@ -132,7 +132,7 @@ empathy_call_factory_class_init (EmpathyCallFactoryClass *klass)
NULL, NULL,
g_cclosure_marshal_generic,
G_TYPE_NONE,
- 2, EMPATHY_TYPE_CALL_HANDLER, G_TYPE_BOOLEAN);
+ 1, EMPATHY_TYPE_CALL_HANDLER);
signals[INCOMING_CALL] =
g_signal_new ("incoming-call",
@@ -215,7 +215,7 @@ handle_channels (TpBaseClient *client,
handler = empathy_call_handler_new_for_channel (call, contact);
g_signal_emit (self, signals[NEW_CALL_HANDLER], 0,
- handler, FALSE);
+ handler);
g_object_unref (handler);
g_object_unref (contact);
diff --git a/src/empathy-call.c b/src/empathy-call.c
index 8a5549694..2d403b3cd 100644
--- a/src/empathy-call.c
+++ b/src/empathy-call.c
@@ -127,7 +127,6 @@ call_window_inhibit_cb (EmpathyCallWindow *window,
static void
new_call_handler_cb (EmpathyCallFactory *factory,
EmpathyCallHandler *handler,
- gboolean outgoing,
gpointer user_data)
{
EmpathyCallWindow *window;