[empathy] call-factory::new-call-handler: remove unused 'outgoing' arg



commit 3beb1bb570e4f722ae77d42e64410ef93437544b
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date:   Wed Aug 7 16:33:59 2013 +0200

    call-factory::new-call-handler: remove unused 'outgoing' arg
    
    https://bugzilla.gnome.org/show_bug.cgi?id=705618

 src/empathy-call-factory.c |    4 ++--
 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 60700ac..9725245 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 8a55496..2d403b3 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;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]