aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--src/bookmarks/ephy-bookmarks-editor.c5
2 files changed, 10 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 18fde2d83..896d9be6e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-03-10 Christian Persch <chpe@cvs.gnome.org>
+
+ * src/bookmarks/ephy-bookmarks-editor.c:
+
+ Fix item ordering to fix bookmarks export format. Bug #333959,
+ patch has RT approval.
+
2006-03-08 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/EphyPromptService.cpp:
diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c
index 6f5778105..0886ee3ae 100644
--- a/src/bookmarks/ephy-bookmarks-editor.c
+++ b/src/bookmarks/ephy-bookmarks-editor.c
@@ -93,9 +93,10 @@ static const struct
const char *extension;
}
export_formats [] =
+/* Don't add or reoder those entries without updating export_dialog_response_cb too! */
{
- { N_("Mozilla (HTML)"), "html" },
- { N_("Epiphany (RDF)"), "rdf" }
+ { N_("Epiphany (RDF)"), "rdf" },
+ { N_("Mozilla (HTML)"), "html" }
};
static void ephy_bookmarks_editor_class_init (EphyBookmarksEditorClass *klass);