diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-03-10 17:21:06 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-03-10 17:21:06 +0800 |
commit | 1e1977a8a8e4eef684f851736c65f42549f01c62 (patch) | |
tree | 8ffbd2e80bab2a8ed600bf0ad22652b8cb81e495 | |
parent | 7e6c5cf541e05a2b3e47e7681613eb2a337a12ec (diff) | |
download | gsoc2013-epiphany-1e1977a8a8e4eef684f851736c65f42549f01c62.tar gsoc2013-epiphany-1e1977a8a8e4eef684f851736c65f42549f01c62.tar.gz gsoc2013-epiphany-1e1977a8a8e4eef684f851736c65f42549f01c62.tar.bz2 gsoc2013-epiphany-1e1977a8a8e4eef684f851736c65f42549f01c62.tar.lz gsoc2013-epiphany-1e1977a8a8e4eef684f851736c65f42549f01c62.tar.xz gsoc2013-epiphany-1e1977a8a8e4eef684f851736c65f42549f01c62.tar.zst gsoc2013-epiphany-1e1977a8a8e4eef684f851736c65f42549f01c62.zip |
Fix item ordering to fix bookmarks export format. Bug #333959, patch has
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.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | src/bookmarks/ephy-bookmarks-editor.c | 5 |
2 files changed, 10 insertions, 2 deletions
@@ -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); |