aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--src/ephy-history-window.c15
2 files changed, 22 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 38b9a76b0..3a2815b8f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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);
}