diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2003-09-27 19:33:40 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2003-09-27 19:33:40 +0800 |
commit | 87719c053d95cc1bf2cce252d75caa60852bf53b (patch) | |
tree | 832816baecf434de6c2242f8d7fc586a002686cc /src/bookmarks | |
parent | fa03218d67d0aafc6709629481a6e9ad717410f0 (diff) | |
download | gsoc2013-epiphany-87719c053d95cc1bf2cce252d75caa60852bf53b.tar gsoc2013-epiphany-87719c053d95cc1bf2cce252d75caa60852bf53b.tar.gz gsoc2013-epiphany-87719c053d95cc1bf2cce252d75caa60852bf53b.tar.bz2 gsoc2013-epiphany-87719c053d95cc1bf2cce252d75caa60852bf53b.tar.lz gsoc2013-epiphany-87719c053d95cc1bf2cce252d75caa60852bf53b.tar.xz gsoc2013-epiphany-87719c053d95cc1bf2cce252d75caa60852bf53b.tar.zst gsoc2013-epiphany-87719c053d95cc1bf2cce252d75caa60852bf53b.zip |
Offer to import from Firebird too.
2003-09-27 Christian Persch <chpe@cvs.gnome.org>
* src/bookmarks/ephy-bookmarks-editor.c: (cmd_bookmarks_import):
* src/bookmarks/ephy-bookmarks-import.h:
Offer to import from Firebird too.
Diffstat (limited to 'src/bookmarks')
-rw-r--r-- | src/bookmarks/ephy-bookmarks-editor.c | 2 | ||||
-rw-r--r-- | src/bookmarks/ephy-bookmarks-import.h | 7 |
2 files changed, 6 insertions, 3 deletions
diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c index f1260656c..27b8cca71 100644 --- a/src/bookmarks/ephy-bookmarks-editor.c +++ b/src/bookmarks/ephy-bookmarks-editor.c @@ -559,6 +559,8 @@ cmd_bookmarks_import (GtkAction *action, add_bookmarks_source_menu (menu, _("Mozilla bookmarks"), MOZILLA_BOOKMARKS_DIR, "bookmarks.html", 4); + add_bookmarks_source_menu (menu, _("Firebird bookmarks"), + FIREBIRD_BOOKMARKS_DIR, "bookmarks.html", 4); add_bookmarks_source_menu (menu, _("Galeon bookmarks"), GALEON_BOOKMARKS_DIR, "bookmarks.xbel", 0); add_bookmarks_source_menu (menu, _("Konqueror bookmarks"), diff --git a/src/bookmarks/ephy-bookmarks-import.h b/src/bookmarks/ephy-bookmarks-import.h index d4b75ccc9..d72d6afd3 100644 --- a/src/bookmarks/ephy-bookmarks-import.h +++ b/src/bookmarks/ephy-bookmarks-import.h @@ -23,9 +23,10 @@ G_BEGIN_DECLS -#define MOZILLA_BOOKMARKS_DIR ".mozilla" -#define GALEON_BOOKMARKS_DIR ".galeon" -#define KDE_BOOKMARKS_DIR ".kde/share/apps/konqueror" +#define MOZILLA_BOOKMARKS_DIR ".mozilla" +#define FIREBIRD_BOOKMARKS_DIR ".phoenix" +#define GALEON_BOOKMARKS_DIR ".galeon" +#define KDE_BOOKMARKS_DIR ".kde/share/apps/konqueror" gboolean ephy_bookmarks_import (EphyBookmarks *bookmarks, const char *filename); |