diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | src/ephy-history-window.c | 15 |
2 files changed, 22 insertions, 0 deletions
@@ -1,5 +1,12 @@ 2003-04-21 David Bordoley <bordoley@msu.edu> + * src/ephy-history-window.c: (cmd_clear): + + Added back code to clear the location entry. + Marco I hope this is ok with you :) + +2003-04-21 David Bordoley <bordoley@msu.edu> + * data/ui/epiphany-bookmark-editor-ui.xml.in: Fixed a duplicate seperator. Add a view menu. diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c index 9836f20a6..efa6e16aa 100644 --- a/src/ephy-history-window.c +++ b/src/ephy-history-window.c @@ -43,6 +43,7 @@ #include "ephy-debug.h" #include "ephy-new-bookmark.h" #include "ephy-stock-icons.h" +#include "toolbar.h" static GtkTargetEntry page_drag_types [] = { @@ -163,6 +164,20 @@ static void cmd_clear (EggAction *action, EphyHistoryWindow *editor) { + const GList *windows; + Session *session; + + session = ephy_shell_get_session (ephy_shell); + windows = session_get_windows (session); + + for (; windows != NULL; windows = windows->next) + { + Toolbar *t; + + t = ephy_window_get_toolbar (EPHY_WINDOW (windows->data)); + toolbar_clear_location_history (t); + } + ephy_history_clear (editor->priv->history); } |