diff options
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-call-factory.c | 3 | ||||
-rw-r--r-- | libempathy/empathy-call-factory.h | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/libempathy/empathy-call-factory.c b/libempathy/empathy-call-factory.c index 8d46310be..06029c4bd 100644 --- a/libempathy/empathy-call-factory.c +++ b/libempathy/empathy-call-factory.c @@ -220,7 +220,6 @@ empathy_call_factory_new_call_with_streams (EmpathyContact *contact, gboolean initial_audio, gboolean initial_video, gint64 timestamp, - EmpathyDispatcherRequestCb callback, gpointer user_data) { EmpathyDispatcher *dispatcher; @@ -232,7 +231,7 @@ empathy_call_factory_new_call_with_streams (EmpathyContact *contact, dispatcher = empathy_dispatcher_dup_singleton (); empathy_dispatcher_create_channel (dispatcher, - empathy_contact_get_connection (contact), request, timestamp, callback, + empathy_contact_get_connection (contact), request, timestamp, NULL, user_data); g_object_unref (dispatcher); diff --git a/libempathy/empathy-call-factory.h b/libempathy/empathy-call-factory.h index aa2175a2d..10b911f82 100644 --- a/libempathy/empathy-call-factory.h +++ b/libempathy/empathy-call-factory.h @@ -69,7 +69,6 @@ void empathy_call_factory_new_call_with_streams (EmpathyContact *contact, gboolean initial_audio, gboolean initial_video, gint64 timestamp, - EmpathyDispatcherRequestCb callback, gpointer user_data); gboolean empathy_call_factory_register (EmpathyCallFactory *self, |