diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2009-01-07 00:46:41 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2009-01-07 00:46:41 +0800 |
commit | 6335ef3df4d38a983f6ce78483be586113b53e0b (patch) | |
tree | d3d32f9738136f6cc45b5c8732e1484e1c78ce16 /libempathy/empathy-contact-manager.c | |
parent | 3cfcb03555f7a22d4b0cd132c2fa74cc81d85955 (diff) | |
download | gsoc2013-empathy-6335ef3df4d38a983f6ce78483be586113b53e0b.tar gsoc2013-empathy-6335ef3df4d38a983f6ce78483be586113b53e0b.tar.gz gsoc2013-empathy-6335ef3df4d38a983f6ce78483be586113b53e0b.tar.bz2 gsoc2013-empathy-6335ef3df4d38a983f6ce78483be586113b53e0b.tar.lz gsoc2013-empathy-6335ef3df4d38a983f6ce78483be586113b53e0b.tar.xz gsoc2013-empathy-6335ef3df4d38a983f6ce78483be586113b53e0b.tar.zst gsoc2013-empathy-6335ef3df4d38a983f6ce78483be586113b53e0b.zip |
Build fix.
svn path=/trunk/; revision=2038
Diffstat (limited to 'libempathy/empathy-contact-manager.c')
-rw-r--r-- | libempathy/empathy-contact-manager.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libempathy/empathy-contact-manager.c b/libempathy/empathy-contact-manager.c index f39248908..bb5782aa4 100644 --- a/libempathy/empathy-contact-manager.c +++ b/libempathy/empathy-contact-manager.c @@ -26,6 +26,7 @@ #include <telepathy-glib/enums.h> #include "empathy-contact-manager.h" +#include "empathy-account-manager.h" #include "empathy-contact-list.h" #include "empathy-utils.h" @@ -217,7 +218,7 @@ empathy_contact_manager_init (EmpathyContactManager *manager) mc = empathy_mission_control_new (); /* Get ContactList for existing connections */ - accounts = mission_control_get_online_connections (priv->mc, NULL); + accounts = mission_control_get_online_connections (mc, NULL); for (l = accounts; l; l = l->next) { contact_manager_add_account (manager, l->data); g_object_unref (l->data); |