aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--src/bookmarks/ephy-bookmarks-import.c19
2 files changed, 9 insertions, 17 deletions
diff --git a/ChangeLog b/ChangeLog
index 1320daec1..021a90e5e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2003-02-05 James Willcox <jwillcox@gnome.org>
+ * src/bookmarks/ephy-bookmarks-import.c: (xbel_parse_folder),
+ (xbel_parse_bookmarks):
+
+ Make importing actually work properly. *cough*
+
+2003-02-05 James Willcox <jwillcox@gnome.org>
+
* data/starthere/section.xsl:
* embed/mozilla/StartHereProtocolHandler.cpp:
* lib/ephy-start-here.c: (galeon_bookmarks), (attach_content):
diff --git a/src/bookmarks/ephy-bookmarks-import.c b/src/bookmarks/ephy-bookmarks-import.c
index 9182bed60..182f8b887 100644
--- a/src/bookmarks/ephy-bookmarks-import.c
+++ b/src/bookmarks/ephy-bookmarks-import.c
@@ -169,11 +169,8 @@ xbel_parse_folder (EphyBookmarks *bookmarks,
child->children,
keyword);
- if (keyword)
- {
- g_free (keyword);
- keyword = NULL;
- }
+ g_free (keyword);
+ keyword = g_strdup (default_keyword);
}
child = child->next;
@@ -194,22 +191,10 @@ xbel_parse_bookmarks (EphyBookmarks *bookmarks,
{
if (xmlStrEqual (child->name, "xbel"))
{
- xbel_parse_bookmarks (bookmarks,
- child->children,
- default_keyword);
- }
- else if (xmlStrEqual (child->name, "folder"))
- {
xbel_parse_folder (bookmarks,
child->children,
default_keyword);
}
- else if (xmlStrEqual (child->name, "bookmark"))
- {
- xbel_parse_folder (bookmarks,
- child,
- default_keyword);
- }
child = child->next;
}