aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-call-factory.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2013-08-07 22:33:59 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2013-08-07 22:48:03 +0800
commit3beb1bb570e4f722ae77d42e64410ef93437544b (patch)
tree644a7fa14097d7fb50a4bb15cd9ea4b3b86bd0f5 /src/empathy-call-factory.c
parentcd240b10a8196fe4289ebe926ae4ea47f4be4365 (diff)
downloadgsoc2013-empathy-3beb1bb570e4f722ae77d42e64410ef93437544b.tar
gsoc2013-empathy-3beb1bb570e4f722ae77d42e64410ef93437544b.tar.gz
gsoc2013-empathy-3beb1bb570e4f722ae77d42e64410ef93437544b.tar.bz2
gsoc2013-empathy-3beb1bb570e4f722ae77d42e64410ef93437544b.tar.lz
gsoc2013-empathy-3beb1bb570e4f722ae77d42e64410ef93437544b.tar.xz
gsoc2013-empathy-3beb1bb570e4f722ae77d42e64410ef93437544b.tar.zst
gsoc2013-empathy-3beb1bb570e4f722ae77d42e64410ef93437544b.zip
call-factory::new-call-handler: remove unused 'outgoing' arg
https://bugzilla.gnome.org/show_bug.cgi?id=705618
Diffstat (limited to 'src/empathy-call-factory.c')
-rw-r--r--src/empathy-call-factory.c4
1 files changed, 2 insertions, 2 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);