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.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/nautilus-window.c b/src/nautilus-window.c
index 0daabb72f..4b3143256 100644
--- a/src/nautilus-window.c
+++ b/src/nautilus-window.c
@@ -1605,6 +1605,13 @@ nautilus_get_history_list (void)
return history_list;
}
+static GList *
+nautilus_window_get_history (NautilusWindow *window)
+{
+ return eel_g_object_list_copy (history_list);
+}
+
+
static NautilusWindowType
nautilus_window_get_window_type (NautilusWindow *window)
{
@@ -1654,6 +1661,7 @@ nautilus_window_info_iface_init (NautilusWindowInfoIface *iface)
iface->set_status = nautilus_window_set_status;
iface->get_window_type = nautilus_window_get_window_type;
iface->get_title = nautilus_window_get_cached_title;
+ iface->get_history = nautilus_window_get_history;
iface->get_current_location = nautilus_window_get_location;
iface->get_ui_container = nautilus_window_get_ui_container;
iface->get_selection_count = nautilus_window_get_selection_count;