From 3c5f909c81c81e1182bc30a4c46dbd37cdd0252c Mon Sep 17 00:00:00 2001 From: Jonny Lamb Date: Fri, 30 Jan 2009 17:35:35 +0000 Subject: Pass an EmpathyContactList to _new and create the store from that. Signed-off-by: Jonny Lamb svn path=/trunk/; revision=2355 --- libempathy-gtk/empathy-contact-selector.c | 8 ++++++-- libempathy-gtk/empathy-contact-selector.h | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) (limited to 'libempathy-gtk') diff --git a/libempathy-gtk/empathy-contact-selector.c b/libempathy-gtk/empathy-contact-selector.c index cfd1f733a..df5384ace 100644 --- a/libempathy-gtk/empathy-contact-selector.c +++ b/libempathy-gtk/empathy-contact-selector.c @@ -308,9 +308,13 @@ empathy_contact_selector_class_init (EmpathyContactSelectorClass *klass) /* public methods */ GtkWidget * -empathy_contact_selector_new (EmpathyContactListStore *store) +empathy_contact_selector_new (EmpathyContactList *contact_list) { - g_return_val_if_fail (EMPATHY_IS_CONTACT_LIST_STORE (store), NULL); + EmpathyContactListStore *store; + + g_return_val_if_fail (EMPATHY_IS_CONTACT_LIST (contact_list), NULL); + + store = empathy_contact_list_store_new (contact_list); return GTK_WIDGET (g_object_new (EMPATHY_TYPE_CONTACT_SELECTOR, "store", store, NULL)); } diff --git a/libempathy-gtk/empathy-contact-selector.h b/libempathy-gtk/empathy-contact-selector.h index 238cbbbb9..d766c5a62 100644 --- a/libempathy-gtk/empathy-contact-selector.h +++ b/libempathy-gtk/empathy-contact-selector.h @@ -59,7 +59,7 @@ struct _EmpathyContactSelectorClass GType empathy_contact_selector_get_type (void) G_GNUC_CONST; GtkWidget * -empathy_contact_selector_new (EmpathyContactListStore *store); +empathy_contact_selector_new (EmpathyContactList *contact_list); EmpathyContact * empathy_contact_selector_get_selected (EmpathyContactSelector *selector); -- cgit v1.2.3