From 325be72a116c40c83a4803b2ade015352ac556ac Mon Sep 17 00:00:00 2001 From: monsta Date: Fri, 6 Jan 2017 12:20:45 +0300 Subject: remove some unused code that's also gone upstream --- src/caja-window-manage-views.c | 46 ------------------------------------------ 1 file changed, 46 deletions(-) (limited to 'src/caja-window-manage-views.c') diff --git a/src/caja-window-manage-views.c b/src/caja-window-manage-views.c index e25a0ba0..86c50ab8 100644 --- a/src/caja-window-manage-views.c +++ b/src/caja-window-manage-views.c @@ -271,39 +271,6 @@ handle_go_forward (CajaNavigationWindowSlot *navigation_slot, g_list_free_1 (link); } -static void -handle_go_elsewhere (CajaWindowSlot *slot, GFile *location) -{ -#if !NEW_UI_COMPLETE - CajaNavigationWindowSlot *navigation_slot; - - if (CAJA_IS_NAVIGATION_WINDOW_SLOT (slot)) - { - navigation_slot = CAJA_NAVIGATION_WINDOW_SLOT (slot); - - /* Clobber the entire forward list, and move displayed location to back list */ - caja_navigation_window_slot_clear_forward_list (navigation_slot); - - if (slot->location != NULL) - { - /* If we're returning to the same uri somehow, don't put this uri on back list. - * This also avoids a problem where set_displayed_location - * didn't update last_location_bookmark since the uri didn't change. - */ - if (!g_file_equal (slot->location, location)) - { - /* Store bookmark for current location in back list, unless there is no current location */ - check_last_bookmark_location_matches_slot (slot); - /* Use the first bookmark in the history list rather than creating a new one. */ - navigation_slot->back_list = g_list_prepend (navigation_slot->back_list, - slot->last_location_bookmark); - g_object_ref (navigation_slot->back_list->data); - } - } - } -#endif -} - void caja_window_update_up_button (CajaWindow *window) { @@ -455,7 +422,6 @@ update_history (CajaWindowSlot *slot, case CAJA_LOCATION_CHANGE_STANDARD: case CAJA_LOCATION_CHANGE_FALLBACK: caja_window_slot_add_current_location_to_history_list (slot); - handle_go_elsewhere (slot, new_location); return; case CAJA_LOCATION_CHANGE_RELOAD: /* for reload there is no work to do */ @@ -773,18 +739,6 @@ caja_window_slot_go_home (CajaWindowSlot *slot, gboolean new_tab) g_object_unref (home); } -#if 0 -static char * -caja_window_slot_get_view_label (CajaWindowSlot *slot) -{ - const CajaViewInfo *info; - - info = caja_view_factory_lookup (caja_window_slot_get_content_view_id (slot)); - - return g_strdup (info->label); -} -#endif - static char * caja_window_slot_get_view_error_label (CajaWindowSlot *slot) { -- cgit v1.2.1