diff options
author | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-02-10 00:29:24 +0800 |
---|---|---|
committer | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-02-10 17:24:55 +0800 |
commit | f22e466ab6e525a148145f66aed3ce4a0f23128a (patch) | |
tree | 2a51ab5ca8aca531b5872f0d259041ec1409cc3e /libempathy-gtk/empathy-contact-menu.c | |
parent | e4d6dc647732a895dbf6c1b0983ccad39ed3a61c (diff) | |
download | gsoc2013-empathy-f22e466ab6e525a148145f66aed3ce4a0f23128a.tar gsoc2013-empathy-f22e466ab6e525a148145f66aed3ce4a0f23128a.tar.gz gsoc2013-empathy-f22e466ab6e525a148145f66aed3ce4a0f23128a.tar.bz2 gsoc2013-empathy-f22e466ab6e525a148145f66aed3ce4a0f23128a.tar.lz gsoc2013-empathy-f22e466ab6e525a148145f66aed3ce4a0f23128a.tar.xz gsoc2013-empathy-f22e466ab6e525a148145f66aed3ce4a0f23128a.tar.zst gsoc2013-empathy-f22e466ab6e525a148145f66aed3ce4a0f23128a.zip |
EmpathyCallFactory -> EmpathyStreamedMediaFactory
Diffstat (limited to 'libempathy-gtk/empathy-contact-menu.c')
-rw-r--r-- | libempathy-gtk/empathy-contact-menu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-contact-menu.c b/libempathy-gtk/empathy-contact-menu.c index 00d83ce5b..ac5d98f48 100644 --- a/libempathy-gtk/empathy-contact-menu.c +++ b/libempathy-gtk/empathy-contact-menu.c @@ -27,7 +27,7 @@ #include <gtk/gtk.h> #include <telepathy-logger/log-manager.h> -#include <libempathy/empathy-call-factory.h> +#include <libempathy/empathy-streamed-media-factory.h> #include <libempathy/empathy-contact-manager.h> #include <libempathy/empathy-dispatcher.h> #include <libempathy/empathy-utils.h> @@ -248,7 +248,7 @@ empathy_contact_audio_call_menu_item_activated (GtkMenuItem *item, EmpathyContact *contact) { - empathy_call_factory_new_call_with_streams (contact, TRUE, FALSE, + empathy_streamed_media_factory_new_call_with_streams (contact, TRUE, FALSE, gtk_get_current_event_time (), NULL); } @@ -279,7 +279,7 @@ static void empathy_contact_video_call_menu_item_activated (GtkMenuItem *item, EmpathyContact *contact) { - empathy_call_factory_new_call_with_streams (contact, TRUE, TRUE, + empathy_streamed_media_factory_new_call_with_streams (contact, TRUE, TRUE, gtk_get_current_event_time (), NULL); } |