diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2009-01-31 01:35:12 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2009-01-31 01:35:12 +0800 |
commit | 1c17073f1f3156c8746ca9ef149435e1328193fa (patch) | |
tree | 3cf73df64f72fbbdf35888caca388dcba065c3f8 /tests/empetit.c | |
parent | bb1f7649fc6cbba1722ff57fc2017810b2cf6578 (diff) | |
download | gsoc2013-empathy-1c17073f1f3156c8746ca9ef149435e1328193fa.tar gsoc2013-empathy-1c17073f1f3156c8746ca9ef149435e1328193fa.tar.gz gsoc2013-empathy-1c17073f1f3156c8746ca9ef149435e1328193fa.tar.bz2 gsoc2013-empathy-1c17073f1f3156c8746ca9ef149435e1328193fa.tar.lz gsoc2013-empathy-1c17073f1f3156c8746ca9ef149435e1328193fa.tar.xz gsoc2013-empathy-1c17073f1f3156c8746ca9ef149435e1328193fa.tar.zst gsoc2013-empathy-1c17073f1f3156c8746ca9ef149435e1328193fa.zip |
Make empathy_contact_selector_new return a GtkWidget* to conform to GTK+.
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
svn path=/trunk/; revision=2347
Diffstat (limited to 'tests/empetit.c')
-rw-r--r-- | tests/empetit.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/empetit.c b/tests/empetit.c index 5a091a75d..14a813034 100644 --- a/tests/empetit.c +++ b/tests/empetit.c @@ -53,8 +53,7 @@ int main (int argc, { EmpathyContactManager *manager; EmpathyContactListStore *store; - EmpathyContactSelector *selector; - GtkWidget *vbox, *button; + GtkWidget *vbox, *button, *selector; gchar *icon_path; gtk_init (&argc, &argv); @@ -69,7 +68,7 @@ int main (int argc, vbox = gtk_vbox_new (FALSE, 2); selector = empathy_contact_selector_new (store); - gtk_box_pack_start (GTK_BOX (vbox), GTK_WIDGET (selector), FALSE, FALSE, 5); + gtk_box_pack_start (GTK_BOX (vbox), selector, FALSE, FALSE, 5); button = gtk_button_new_with_label ("Chat"); g_signal_connect (G_OBJECT (button), "clicked", |