diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-08-09 20:57:08 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-08-11 18:27:57 +0800 |
commit | 3f28e2304aab16ad6d68054a19dcbfdd5c75e7c8 (patch) | |
tree | 519e25b7370d2bc6774ef7abaf5ce20c9c682635 /libempathy-gtk/empathy-contact-menu.c | |
parent | 82ffd1da38bd5e6b81d757d5218b41cde85d77ae (diff) | |
download | gsoc2013-empathy-3f28e2304aab16ad6d68054a19dcbfdd5c75e7c8.tar gsoc2013-empathy-3f28e2304aab16ad6d68054a19dcbfdd5c75e7c8.tar.gz gsoc2013-empathy-3f28e2304aab16ad6d68054a19dcbfdd5c75e7c8.tar.bz2 gsoc2013-empathy-3f28e2304aab16ad6d68054a19dcbfdd5c75e7c8.tar.lz gsoc2013-empathy-3f28e2304aab16ad6d68054a19dcbfdd5c75e7c8.tar.xz gsoc2013-empathy-3f28e2304aab16ad6d68054a19dcbfdd5c75e7c8.tar.zst gsoc2013-empathy-3f28e2304aab16ad6d68054a19dcbfdd5c75e7c8.zip |
empathy_call_factory_new_call_with_streams: remove callback arg
If you want to handle the channel yourself then use TpAccountChannelRequest.
Diffstat (limited to 'libempathy-gtk/empathy-contact-menu.c')
-rw-r--r-- | libempathy-gtk/empathy-contact-menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-contact-menu.c b/libempathy-gtk/empathy-contact-menu.c index 9094c6854..a75fe8fab 100644 --- a/libempathy-gtk/empathy-contact-menu.c +++ b/libempathy-gtk/empathy-contact-menu.c @@ -247,7 +247,7 @@ empathy_contact_audio_call_menu_item_activated (GtkMenuItem *item, { empathy_call_factory_new_call_with_streams (contact, TRUE, FALSE, - gtk_get_current_event_time (), NULL, NULL); + gtk_get_current_event_time (), NULL); } GtkWidget * @@ -277,7 +277,7 @@ empathy_contact_video_call_menu_item_activated (GtkMenuItem *item, EmpathyContact *contact) { empathy_call_factory_new_call_with_streams (contact, TRUE, TRUE, - gtk_get_current_event_time (), NULL, NULL); + gtk_get_current_event_time (), NULL); } GtkWidget * |