diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-11-03 22:29:34 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-11-28 19:09:55 +0800 |
commit | 79f856c788de8662f09cbfda08434a4081a1f593 (patch) | |
tree | c849ba4047a2377ede7f9d71d64eecd0438873ef /libempathy/empathy-contact-manager.c | |
parent | fb2b5ea4bbbc4ac7a1a1353cb162ec2d4524eb17 (diff) | |
download | gsoc2013-empathy-79f856c788de8662f09cbfda08434a4081a1f593.tar gsoc2013-empathy-79f856c788de8662f09cbfda08434a4081a1f593.tar.gz gsoc2013-empathy-79f856c788de8662f09cbfda08434a4081a1f593.tar.bz2 gsoc2013-empathy-79f856c788de8662f09cbfda08434a4081a1f593.tar.lz gsoc2013-empathy-79f856c788de8662f09cbfda08434a4081a1f593.tar.xz gsoc2013-empathy-79f856c788de8662f09cbfda08434a4081a1f593.tar.zst gsoc2013-empathy-79f856c788de8662f09cbfda08434a4081a1f593.zip |
remove empathy_contact_manager_get_flags_for_connection()
https://bugzilla.gnome.org/show_bug.cgi?id=663328
Diffstat (limited to 'libempathy/empathy-contact-manager.c')
-rw-r--r-- | libempathy/empathy-contact-manager.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/libempathy/empathy-contact-manager.c b/libempathy/empathy-contact-manager.c index 31750dcfe..1ec6cba18 100644 --- a/libempathy/empathy-contact-manager.c +++ b/libempathy/empathy-contact-manager.c @@ -576,25 +576,3 @@ contact_manager_iface_init (EmpathyContactListIface *iface) iface->rename_group = contact_manager_rename_group; iface->remove_group = contact_manager_remove_group; } - -EmpathyContactListFlags -empathy_contact_manager_get_flags_for_connection ( - EmpathyContactManager *manager, - TpConnection *connection) -{ - EmpathyContactManagerPriv *priv = GET_PRIV (manager); - EmpathyContactList *list; - EmpathyContactListFlags flags; - - g_return_val_if_fail (EMPATHY_IS_CONTACT_MANAGER (manager), FALSE); - g_return_val_if_fail (connection != NULL, FALSE); - - list = g_hash_table_lookup (priv->lists, connection); - if (list == NULL) { - return FALSE; - } - flags = empathy_contact_list_get_flags (list); - - return flags; -} - |