aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--embed/ephy-history.c5
2 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index eb6aaad23..4b5c9573a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2003-10-19 Marco Pesenti Gritti <marco@gnome.org>
+ * embed/ephy-history.c: (update_hosts):
+
+ do not try to remove All node
+
+2003-10-19 Marco Pesenti Gritti <marco@gnome.org>
+
* embed/mozilla/mozilla-embed-persist.cpp:
cleanup. Fix warning when fetching favicons.
diff --git a/embed/ephy-history.c b/embed/ephy-history.c
index c6aabef64..d3991bea6 100644
--- a/embed/ephy-history.c
+++ b/embed/ephy-history.c
@@ -341,7 +341,10 @@ update_hosts (EphyHistory *eh)
EphyNode *kid;
kid = g_ptr_array_index (children, i);
- update_host_on_child_remove (kid);
+ if (kid != eh->priv->pages)
+ {
+ update_host_on_child_remove (kid);
+ }
}
eh->priv->update_hosts_idle = 0;