[nautilus] pathbar: remove unused code
- From: Cosimo Cecchi <cosimoc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [nautilus] pathbar: remove unused code
- Date: Fri, 13 Jul 2012 17:32:14 +0000 (UTC)
commit 4685ff0526f1a7324fadfc7b781bd8d2c7a92efc
Author: Cosimo Cecchi <cosimoc gnome org>
Date: Fri Jul 13 13:20:04 2012 -0400
pathbar: remove unused code
Since we don't show any icon for the trash in the pathbar, there's no
need to listen to the changed signal on the trash monitor here.
src/nautilus-pathbar.c | 34 ----------------------------------
1 files changed, 0 insertions(+), 34 deletions(-)
---
diff --git a/src/nautilus-pathbar.c b/src/nautilus-pathbar.c
index 61840c7..9758978 100644
--- a/src/nautilus-pathbar.c
+++ b/src/nautilus-pathbar.c
@@ -140,32 +140,6 @@ get_slider_button (NautilusPathBar *path_bar,
return button;
}
-static void
-trash_state_changed_cb (NautilusTrashMonitor *monitor,
- gboolean state,
- NautilusPathBar *path_bar)
-{
- GFile *file;
- GList *list;
-
- file = g_file_new_for_uri ("trash:///");
- for (list = path_bar->priv->button_list; list; list = list->next) {
- ButtonData *button_data;
- button_data = BUTTON_DATA (list->data);
- if (g_file_equal (file, button_data->path)) {
- GIcon *icon;
- NautilusIconInfo *icon_info;
- GdkPixbuf *pixbuf;
-
- icon = nautilus_trash_monitor_get_icon ();
- icon_info = nautilus_icon_info_lookup (icon, NAUTILUS_PATH_BAR_ICON_SIZE);
- pixbuf = nautilus_icon_info_get_pixbuf_at_size (icon_info, NAUTILUS_PATH_BAR_ICON_SIZE);
- gtk_image_set_from_pixbuf (GTK_IMAGE (button_data->image), pixbuf);
- }
- }
- g_object_unref (file);
-}
-
static gboolean
slider_timeout (gpointer user_data)
{
@@ -274,11 +248,6 @@ nautilus_path_bar_init (NautilusPathBar *path_bar)
G_CALLBACK (nautilus_path_bar_slider_drag_leave),
path_bar);
- g_signal_connect (nautilus_trash_monitor_get (),
- "trash_state_changed",
- G_CALLBACK (trash_state_changed_cb),
- path_bar);
-
gtk_style_context_add_class (gtk_widget_get_style_context (GTK_WIDGET (path_bar)),
GTK_STYLE_CLASS_LINKED);
}
@@ -299,9 +268,6 @@ nautilus_path_bar_finalize (GObject *object)
g_list_free (path_bar->priv->button_list);
- g_signal_handlers_disconnect_by_func (nautilus_trash_monitor_get (),
- trash_state_changed_cb, path_bar);
-
G_OBJECT_CLASS (nautilus_path_bar_parent_class)->finalize (object);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]