summaryrefslogtreecommitdiff
path: root/src/nautilus-window.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nautilus-window.c')
-rw-r--r--src/nautilus-window.c84
1 files changed, 1 insertions, 83 deletions
diff --git a/src/nautilus-window.c b/src/nautilus-window.c
index 2215903d9..f004d629e 100644
--- a/src/nautilus-window.c
+++ b/src/nautilus-window.c
@@ -595,7 +595,6 @@ nautilus_window_open_location_full (NautilusWindow *window,
{
NautilusWindowSlot *active_slot;
gboolean new_tab_at_end;
- NautilusNavigationState *navigation_state = NULL;
/* The location owner can be one of the slots requesting to handle an
* unhandled location. But this slot can be destroyed when switching to
@@ -627,8 +626,6 @@ nautilus_window_open_location_full (NautilusWindow *window,
}
else if (!nautilus_window_slot_handles_location (target_slot, location))
{
- navigation_state = nautilus_window_slot_get_navigation_state (active_slot);
-
target_slot = replace_active_slot (window, location, flags);
}
@@ -640,19 +637,7 @@ nautilus_window_open_location_full (NautilusWindow *window,
nautilus_window_set_active_slot (window, target_slot);
}
- if (navigation_state != NULL)
- {
- nautilus_window_slot_open_location_set_navigation_state (target_slot,
- location, flags, selection,
- NAUTILUS_LOCATION_CHANGE_STANDARD,
- navigation_state, 0);
-
- free_navigation_state (navigation_state);
- }
- else
- {
- nautilus_window_slot_open_location_full (target_slot, location, flags, selection);
- }
+ nautilus_window_slot_open_location_full (target_slot, location, flags, selection);
g_object_unref (location);
}
@@ -2964,70 +2949,3 @@ nautilus_window_search (NautilusWindow *window,
g_warning ("Trying search on a slot but no active slot present");
}
}
-
-/* Ideally, this method should be a simple wrapper for the slot method. However,
- * going back or forward can result in a new slot (or another subclass), so we
- * workaround that by duplicating part of nautilus_window_slot_back_or_forward()
- */
-void
-nautilus_window_back_or_forward (NautilusWindow *window,
- gboolean back,
- guint distance,
- NautilusWindowOpenFlags flags)
-{
- NautilusWindowSlot *slot;
- GList *next_location_list, *back_list, *forward_list;
- g_autoptr (GFile) next_location = NULL;
- guint len;
- NautilusBookmark *next_location_bookmark;
- gboolean active_slot_handles_location;
-
- slot = nautilus_window_get_active_slot (window);
- back_list = nautilus_window_slot_get_back_history (slot);
- forward_list = nautilus_window_slot_get_forward_history (slot);
-
- next_location_list = back ? back_list : forward_list;
-
- len = (guint) g_list_length (next_location_list);
-
- /* If we can't move in the direction at all, just return. */
- if (len == 0)
- {
- return;
- }
-
- /* If the distance to move is off the end of the list, go to the end
- * of the list. */
- if (distance >= len)
- {
- distance = len - 1;
- }
-
- next_location_bookmark = g_list_nth_data (next_location_list, distance);
- next_location = nautilus_bookmark_get_location (next_location_bookmark);
-
- active_slot_handles_location = nautilus_window_slot_handles_location (slot, next_location);
-
- if (!active_slot_handles_location)
- {
- NautilusNavigationState *navigation_state;
- NautilusLocationChangeType location_change_type;
-
- navigation_state = nautilus_window_slot_get_navigation_state (slot);
-
- location_change_type = back ? NAUTILUS_LOCATION_CHANGE_BACK : NAUTILUS_LOCATION_CHANGE_FORWARD;
-
- slot = replace_active_slot (window, next_location, flags);
-
- nautilus_window_slot_open_location_set_navigation_state (slot,
- next_location, flags, NULL,
- location_change_type,
- navigation_state, distance);
-
- free_navigation_state (navigation_state);
- }
- else
- {
- nautilus_window_slot_back_or_forward (slot, back, distance, flags);
- }
-}