aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--src/bookmarks/ephy-bookmarks.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c7b32278f..39f2e86ef 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
2004-03-01 Christian Persch <chpe@cvs.gnome.org>
+ * src/bookmarks/ephy-bookmarks.c: (update_has_smart_address):
+
+ When changing a bookmark address and it was a smart bookmark but
+ now is not anymore, remove the bookmark from the smart_bmks node
+ instead of adding it :)
+
+2004-03-01 Christian Persch <chpe@cvs.gnome.org>
+
* src/ephy-toolbars-model.c: (get_toolbar_pos),
(ephy_toolbars_model_set_bookmarks):
diff --git a/src/bookmarks/ephy-bookmarks.c b/src/bookmarks/ephy-bookmarks.c
index 928813f81..88e9c5d65 100644
--- a/src/bookmarks/ephy-bookmarks.c
+++ b/src/bookmarks/ephy-bookmarks.c
@@ -806,7 +806,7 @@ update_has_smart_address (EphyBookmarks *bookmarks, EphyNode *bmk, const char *a
{
if (ephy_node_has_child (smart_bmks, bmk))
{
- ephy_node_add_child (smart_bmks, bmk);
+ ephy_node_remove_child (smart_bmks, bmk);
}
}
}