[empathy] nautilus-send-to: Use GtkListBox API instead of EggListBox
- From: Xavier Claessens <xclaesse src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [empathy] nautilus-send-to: Use GtkListBox API instead of EggListBox
- Date: Mon, 16 Sep 2013 14:40:04 +0000 (UTC)
commit 5c48cc7d0603f68feed952c1a63fe1452baad56d
Author: Xavier Claessens <xavier claessens collabora co uk>
Date: Fri Sep 13 17:07:30 2013 -0400
nautilus-send-to: Use GtkListBox API instead of EggListBox
nautilus-sendto-plugin/empathy-nautilus-sendto.c | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
---
diff --git a/nautilus-sendto-plugin/empathy-nautilus-sendto.c
b/nautilus-sendto-plugin/empathy-nautilus-sendto.c
index de79238..77947f4 100644
--- a/nautilus-sendto-plugin/empathy-nautilus-sendto.c
+++ b/nautilus-sendto-plugin/empathy-nautilus-sendto.c
@@ -81,7 +81,7 @@ dup_contact_from_individual (FolksIndividual *individual)
}
static gboolean
-filter_individual (GtkWidget *child,
+filter_individual (GtkListBoxRow *child,
gpointer user_data)
{
FolksIndividual *individual;
@@ -121,10 +121,9 @@ get_contacts_widget (NstPlugin *plugin)
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled),
GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
- egg_list_box_set_filter_func (EGG_LIST_BOX (roster_view), filter_individual,
+ gtk_list_box_set_filter_func (GTK_LIST_BOX (roster_view), filter_individual,
roster_view, NULL);
- egg_list_box_add_to_scrolled (EGG_LIST_BOX (roster_view),
- GTK_SCROLLED_WINDOW (scrolled));
+ gtk_container_add (GTK_CONTAINER (scrolled), roster_view);
gtk_box_pack_start (GTK_BOX (box), scrolled, TRUE, TRUE, 0);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]