diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2013-08-07 22:33:59 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2013-08-07 22:48:03 +0800 |
commit | 3beb1bb570e4f722ae77d42e64410ef93437544b (patch) | |
tree | 644a7fa14097d7fb50a4bb15cd9ea4b3b86bd0f5 /src | |
parent | cd240b10a8196fe4289ebe926ae4ea47f4be4365 (diff) | |
download | gsoc2013-empathy-3beb1bb570e4f722ae77d42e64410ef93437544b.tar.gz 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')
-rw-r--r-- | src/empathy-call-factory.c | 4 | ||||
-rw-r--r-- | src/empathy-call.c | 1 |
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; |