summaryrefslogtreecommitdiff
path: root/libnautilus/nautilus-view-component.idl
diff options
context:
space:
mode:
authorMathieu Lacage <mathieu@eazel.com>2000-08-18 20:49:32 +0000
committerMathieu Lacage <mathieu@src.gnome.org>2000-08-18 20:49:32 +0000
commite308553c837798d57eb3961b9f80158872a51d7b (patch)
treec0d2f77648fad78821669630688fa91bb4a08858 /libnautilus/nautilus-view-component.idl
parent425ec1016e4eb57b919751d72454cd95535f9065 (diff)
downloadnautilus-e308553c837798d57eb3961b9f80158872a51d7b.tar.gz
Cleans up the HistoryFrame : remove the History object and replaces it
2000-08-18 Mathieu Lacage <mathieu@eazel.com> Cleans up the HistoryFrame : remove the History object and replaces it with HistoryList. * components/history/nautilus-history-view.c: (get_history_list), (history_load_location): * libnautilus/nautilus-view-component.idl: * src/nautilus-history-frame.c: * src/nautilus-view-frame.c: (nautilus_view_frame_get_history_list): * src/nautilus-view-frame.h: * src/nautilus-window.c: (nautilus_window_get_history_list_callback):
Diffstat (limited to 'libnautilus/nautilus-view-component.idl')
-rw-r--r--libnautilus/nautilus-view-component.idl6
1 files changed, 1 insertions, 5 deletions
diff --git a/libnautilus/nautilus-view-component.idl b/libnautilus/nautilus-view-component.idl
index d4ae4827e..99c336a70 100644
--- a/libnautilus/nautilus-view-component.idl
+++ b/libnautilus/nautilus-view-component.idl
@@ -131,10 +131,6 @@ module Nautilus {
URI location;
};
typedef sequence<HistoryItem> HistoryList;
- struct History {
- HistoryList list;
- long position; /* 0 = end of list */
- };
/* An interface that a component can use to get at the history
* list stored in Nautilus.
@@ -143,7 +139,7 @@ module Nautilus {
/* Called by a view component to get the Nautilus
* history list.
*/
- History get_history_list ();
+ HistoryList get_history_list ();
};
};