diff options
author | Xan Lopez <xan@igalia.com> | 2012-12-12 20:09:39 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-12-12 20:09:39 +0800 |
commit | ceab3ce08927ec45bb880371b7f31041a5192851 (patch) | |
tree | 8ab7c7d77d071f21e12954e89a5fefcacbcbac60 /src/bookmarks/ephy-bookmarks.c | |
parent | 5660617413c37eb397a50361b6ca5bdd250b5be5 (diff) | |
download | gsoc2013-epiphany-ceab3ce08927ec45bb880371b7f31041a5192851.tar gsoc2013-epiphany-ceab3ce08927ec45bb880371b7f31041a5192851.tar.gz gsoc2013-epiphany-ceab3ce08927ec45bb880371b7f31041a5192851.tar.bz2 gsoc2013-epiphany-ceab3ce08927ec45bb880371b7f31041a5192851.tar.lz gsoc2013-epiphany-ceab3ce08927ec45bb880371b7f31041a5192851.tar.xz gsoc2013-epiphany-ceab3ce08927ec45bb880371b7f31041a5192851.tar.zst gsoc2013-epiphany-ceab3ce08927ec45bb880371b7f31041a5192851.zip |
Define the names of the history and bookmarks files in just one place
Diffstat (limited to 'src/bookmarks/ephy-bookmarks.c')
-rw-r--r-- | src/bookmarks/ephy-bookmarks.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bookmarks/ephy-bookmarks.c b/src/bookmarks/ephy-bookmarks.c index 67917bc0e..ac41a64bd 100644 --- a/src/bookmarks/ephy-bookmarks.c +++ b/src/bookmarks/ephy-bookmarks.c @@ -32,6 +32,7 @@ #include "ephy-history-service.h" #include "ephy-node-common.h" #include "ephy-prefs.h" +#include "ephy-profile-utils.h" #include "ephy-settings.h" #include "ephy-shell.h" #include "ephy-signal-accumulator.h" @@ -957,10 +958,10 @@ ephy_bookmarks_init (EphyBookmarks *eb) eb->priv->db = db; eb->priv->xml_file = g_build_filename (ephy_dot_dir (), - "ephy-bookmarks.xml", + EPHY_BOOKMARKS_FILE, NULL); eb->priv->rdf_file = g_build_filename (ephy_dot_dir (), - "bookmarks.rdf", + EPHY_BOOKMARKS_FILE_RDF, NULL); /* Bookmarks */ |