diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 21:37:09 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 23:17:28 +0800 |
commit | 74d04392b3aadeee49fc7012d2647f631ed69ac6 (patch) | |
tree | c1106e2ac3cece853cbc8d55045dadb9e9d006f6 | |
parent | 2887c266c85b651784f68b3d3fd5515cda759d88 (diff) | |
download | gsoc2013-empathy-74d04392b3aadeee49fc7012d2647f631ed69ac6.tar gsoc2013-empathy-74d04392b3aadeee49fc7012d2647f631ed69ac6.tar.gz gsoc2013-empathy-74d04392b3aadeee49fc7012d2647f631ed69ac6.tar.bz2 gsoc2013-empathy-74d04392b3aadeee49fc7012d2647f631ed69ac6.tar.lz gsoc2013-empathy-74d04392b3aadeee49fc7012d2647f631ed69ac6.tar.xz gsoc2013-empathy-74d04392b3aadeee49fc7012d2647f631ed69ac6.tar.zst gsoc2013-empathy-74d04392b3aadeee49fc7012d2647f631ed69ac6.zip |
empathy_contact_audio_call_menu_item_activated: use empathy_call_factory_new_call_with_streams
-rw-r--r-- | libempathy-gtk/empathy-contact-menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-contact-menu.c b/libempathy-gtk/empathy-contact-menu.c index 9f66f1048..740e3827c 100644 --- a/libempathy-gtk/empathy-contact-menu.c +++ b/libempathy-gtk/empathy-contact-menu.c @@ -147,7 +147,7 @@ empathy_contact_audio_call_menu_item_activated (GtkMenuItem *item, EmpathyCallFactory *factory; factory = empathy_call_factory_get (); - empathy_call_factory_new_call (factory, contact); + empathy_call_factory_new_call_with_streams (factory, contact, TRUE, FALSE); } GtkWidget * |