aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-contact-list-view.c
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>2009-02-03 17:02:46 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2009-02-03 17:02:46 +0800
commit5f6779c758764d859efe162ecb6fba579cc318f1 (patch)
tree4ac7c249472dd2f1304372faedf34276d5e8e812 /libempathy-gtk/empathy-contact-list-view.c
parent371a7a4d93ba32f2ea9b9a18a36410ca7702ae23 (diff)
downloadgsoc2013-empathy-5f6779c758764d859efe162ecb6fba579cc318f1.tar
gsoc2013-empathy-5f6779c758764d859efe162ecb6fba579cc318f1.tar.gz
gsoc2013-empathy-5f6779c758764d859efe162ecb6fba579cc318f1.tar.bz2
gsoc2013-empathy-5f6779c758764d859efe162ecb6fba579cc318f1.tar.lz
gsoc2013-empathy-5f6779c758764d859efe162ecb6fba579cc318f1.tar.xz
gsoc2013-empathy-5f6779c758764d859efe162ecb6fba579cc318f1.tar.zst
gsoc2013-empathy-5f6779c758764d859efe162ecb6fba579cc318f1.zip
Switch to calling CallFactory to make calls
Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk> svn path=/trunk/; revision=2382
Diffstat (limited to 'libempathy-gtk/empathy-contact-list-view.c')
-rw-r--r--libempathy-gtk/empathy-contact-list-view.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-contact-list-view.c b/libempathy-gtk/empathy-contact-list-view.c
index 0083102f2..b7a6601c6 100644
--- a/libempathy-gtk/empathy-contact-list-view.c
+++ b/libempathy-gtk/empathy-contact-list-view.c
@@ -34,6 +34,7 @@
#include <libmissioncontrol/mc-account.h>
+#include <libempathy/empathy-call-factory.h>
#include <libempathy/empathy-contact-factory.h>
#include <libempathy/empathy-contact-list.h>
#include <libempathy/empathy-contact-groups.h>
@@ -571,7 +572,11 @@ contact_list_view_voip_activated_cb (EmpathyCellRendererActivatable *cell,
-1);
if (contact) {
- empathy_start_call_with_contact (contact);
+ EmpathyCallFactory *factory;
+
+ factory = empathy_call_factory_get ();
+ empathy_call_factory_new_call (factory, contact);
+
g_object_unref (contact);
}
}