From a43ec4118dd3f0ca9bba92d38b0bfe54d632b3f7 Mon Sep 17 00:00:00 2001 From: David Bordoley Date: Mon, 21 Apr 2003 14:27:53 +0000 Subject: Added back code to clear the location entry. Marco I hope this is ok with 2003-04-21 David Bordoley * src/ephy-history-window.c: (cmd_clear): Added back code to clear the location entry. Marco I hope this is ok with you :) --- ChangeLog | 7 +++++++ src/ephy-history-window.c | 15 +++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/ChangeLog b/ChangeLog index 38b9a76b0..3a2815b8f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2003-04-21 David Bordoley + + * 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 * data/ui/epiphany-bookmark-editor-ui.xml.in: 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); } -- cgit v1.2.3