aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2009-01-31 01:35:35 +0800
committerxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2009-01-31 01:35:35 +0800
commitb34c39368800754c96f552f4aa502e2f0b4ffba2 (patch)
tree2b3646af87ea70eb218552b7ca50b46b7826f009
parent6908fe9501b74251c2932c88bb9407b5da69805d (diff)
downloadgsoc2013-empathy-b34c39368800754c96f552f4aa502e2f0b4ffba2.tar
gsoc2013-empathy-b34c39368800754c96f552f4aa502e2f0b4ffba2.tar.gz
gsoc2013-empathy-b34c39368800754c96f552f4aa502e2f0b4ffba2.tar.bz2
gsoc2013-empathy-b34c39368800754c96f552f4aa502e2f0b4ffba2.tar.lz
gsoc2013-empathy-b34c39368800754c96f552f4aa502e2f0b4ffba2.tar.xz
gsoc2013-empathy-b34c39368800754c96f552f4aa502e2f0b4ffba2.tar.zst
gsoc2013-empathy-b34c39368800754c96f552f4aa502e2f0b4ffba2.zip
Pass an EmpathyContactList to _new and create the store from that.
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk> git-svn-id: svn+ssh://svn.gnome.org/svn/empathy/trunk@2355 4ee84921-47dd-4033-b63a-18d7a039a3e4
-rw-r--r--libempathy-gtk/empathy-contact-selector.c8
-rw-r--r--libempathy-gtk/empathy-contact-selector.h2
-rw-r--r--tests/empetit.c5
3 files changed, 8 insertions, 7 deletions
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);
diff --git a/tests/empetit.c b/tests/empetit.c
index 2c05fd089..43fddcbe2 100644
--- a/tests/empetit.c
+++ b/tests/empetit.c
@@ -53,7 +53,6 @@ int main (int argc,
char *argv[])
{
EmpathyContactManager *manager;
- EmpathyContactListStore *store;
GtkWidget *vbox, *button, *selector;
gtk_init (&argc, &argv);
@@ -61,11 +60,10 @@ int main (int argc,
empathy_gtk_init ();
manager = empathy_contact_manager_dup_singleton ();
- store = empathy_contact_list_store_new (EMPATHY_CONTACT_LIST (manager));
+ selector = empathy_contact_selector_new (EMPATHY_CONTACT_LIST (manager));
vbox = gtk_vbox_new (FALSE, 2);
- selector = empathy_contact_selector_new (store);
gtk_box_pack_start (GTK_BOX (vbox), selector, FALSE, FALSE, 5);
button = gtk_button_new_with_label ("Chat");
@@ -83,7 +81,6 @@ int main (int argc,
gtk_main ();
- g_object_unref (store);
g_object_unref (manager);
return 0;