aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-contact-list-store.c
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2008-01-21 05:42:04 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2008-01-21 05:42:04 +0800
commit1b7904f4d6c5c49ffc0b32ff76032f83718a606b (patch)
tree69cc4bfe4683fa6cd882d9fbfcc93e2397516042 /libempathy-gtk/empathy-contact-list-store.c
parenteccbc4d73eca63fd700d89f9bc31dcad7cb17edc (diff)
downloadgsoc2013-empathy-1b7904f4d6c5c49ffc0b32ff76032f83718a606b.tar
gsoc2013-empathy-1b7904f4d6c5c49ffc0b32ff76032f83718a606b.tar.gz
gsoc2013-empathy-1b7904f4d6c5c49ffc0b32ff76032f83718a606b.tar.bz2
gsoc2013-empathy-1b7904f4d6c5c49ffc0b32ff76032f83718a606b.tar.lz
gsoc2013-empathy-1b7904f4d6c5c49ffc0b32ff76032f83718a606b.tar.xz
gsoc2013-empathy-1b7904f4d6c5c49ffc0b32ff76032f83718a606b.tar.zst
gsoc2013-empathy-1b7904f4d6c5c49ffc0b32ff76032f83718a606b.zip
Do not take show_groups in empathy_contact_list_store_new
svn path=/trunk/; revision=587
Diffstat (limited to 'libempathy-gtk/empathy-contact-list-store.c')
-rw-r--r--libempathy-gtk/empathy-contact-list-store.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-contact-list-store.c b/libempathy-gtk/empathy-contact-list-store.c
index b430addd8..bd5e9bc5e 100644
--- a/libempathy-gtk/empathy-contact-list-store.c
+++ b/libempathy-gtk/empathy-contact-list-store.c
@@ -394,14 +394,12 @@ contact_list_store_set_property (GObject *object,
}
EmpathyContactListStore *
-empathy_contact_list_store_new (EmpathyContactList *list_iface,
- gboolean show_groups)
+empathy_contact_list_store_new (EmpathyContactList *list_iface)
{
g_return_val_if_fail (EMPATHY_IS_CONTACT_LIST (list_iface), NULL);
return g_object_new (EMPATHY_TYPE_CONTACT_LIST_STORE,
"contact-list", list_iface,
- "show-groups", show_groups,
NULL);
}