aboutsummaryrefslogtreecommitdiffstats
path: root/nautilus-sendto-plugin
diff options
context:
space:
mode:
authorLaurent Contzen <lcontzen@gmail.com>2012-08-04 20:38:25 +0800
committerLaurent Contzen <lcontzen@gmail.com>2012-08-06 17:02:19 +0800
commitb3c361fdca7f6a0bb2a63e676cd0a5d488261127 (patch)
treeb3a500a60b01bb7fb6ece7eb118a2a2669adbacb /nautilus-sendto-plugin
parent765db7cfd0a0aa7aea9f0f717a7762ad79e14ef9 (diff)
downloadgsoc2013-empathy-b3c361fdca7f6a0bb2a63e676cd0a5d488261127.tar
gsoc2013-empathy-b3c361fdca7f6a0bb2a63e676cd0a5d488261127.tar.gz
gsoc2013-empathy-b3c361fdca7f6a0bb2a63e676cd0a5d488261127.tar.bz2
gsoc2013-empathy-b3c361fdca7f6a0bb2a63e676cd0a5d488261127.tar.lz
gsoc2013-empathy-b3c361fdca7f6a0bb2a63e676cd0a5d488261127.tar.xz
gsoc2013-empathy-b3c361fdca7f6a0bb2a63e676cd0a5d488261127.tar.zst
gsoc2013-empathy-b3c361fdca7f6a0bb2a63e676cd0a5d488261127.zip
Removed the manager from the view, relying only on the model
Diffstat (limited to 'nautilus-sendto-plugin')
-rw-r--r--nautilus-sendto-plugin/empathy-nautilus-sendto.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/nautilus-sendto-plugin/empathy-nautilus-sendto.c b/nautilus-sendto-plugin/empathy-nautilus-sendto.c
index fcfc28215..56c55f57a 100644
--- a/nautilus-sendto-plugin/empathy-nautilus-sendto.c
+++ b/nautilus-sendto-plugin/empathy-nautilus-sendto.c
@@ -114,15 +114,15 @@ get_contacts_widget (NstPlugin *plugin)
GtkWidget *roster_view, *box, *scrolled;
EmpathyIndividualManager *mgr;
EmpathyRosterModel *model;
-
+
box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 8);
mgr = empathy_individual_manager_dup_singleton ();
model = EMPATHY_ROSTER_MODEL (empathy_roster_model_manager_new (mgr));
- roster_view = empathy_roster_view_new (mgr, model);
+ roster_view = empathy_roster_view_new (model);
g_object_unref (model);
-
+
scrolled = gtk_scrolled_window_new (NULL, NULL);
g_object_unref (mgr);