diff options
author | Xan Lopez <xan@igalia.com> | 2012-04-26 11:33:53 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-05-08 02:29:47 +0800 |
commit | 850104ef1d0b44a92fcda554d0691ed40a902c15 (patch) | |
tree | 2cf91859f803225814add15b0715942dd82e6ca8 /lib/ephy-file-helpers.c | |
parent | 3847db0803addac9f0b90dc86767d8f65768d4ad (diff) | |
download | gsoc2013-epiphany-850104ef1d0b44a92fcda554d0691ed40a902c15.tar gsoc2013-epiphany-850104ef1d0b44a92fcda554d0691ed40a902c15.tar.gz gsoc2013-epiphany-850104ef1d0b44a92fcda554d0691ed40a902c15.tar.bz2 gsoc2013-epiphany-850104ef1d0b44a92fcda554d0691ed40a902c15.tar.lz gsoc2013-epiphany-850104ef1d0b44a92fcda554d0691ed40a902c15.tar.xz gsoc2013-epiphany-850104ef1d0b44a92fcda554d0691ed40a902c15.tar.zst gsoc2013-epiphany-850104ef1d0b44a92fcda554d0691ed40a902c15.zip |
Based on a patch by Jon McCann.
Migrate profile directory to XDG config dir
https://bugzilla.gnome.org/show_bug.cgi?id=522810
Diffstat (limited to 'lib/ephy-file-helpers.c')
-rw-r--r-- | lib/ephy-file-helpers.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/ephy-file-helpers.c b/lib/ephy-file-helpers.c index 63f3c1434..414dd9e60 100644 --- a/lib/ephy-file-helpers.c +++ b/lib/ephy-file-helpers.c @@ -278,7 +278,7 @@ ephy_dot_dir (void) * Initializes Epiphany file helper functions, sets @profile_dir as Epiphany's * profile dir and whether the running session will be private. * - * Returns: %FALSE if the profile dir couldn't be created or accesed + * Returns: %FALSE if the profile dir couldn't be created or accessed **/ gboolean ephy_file_helpers_init (const char *profile_dir, @@ -331,8 +331,7 @@ ephy_file_helpers_init (const char *profile_dir, } else { - dot_dir = g_build_filename (g_get_home_dir (), - GNOME_DOT_GNOME, + dot_dir = g_build_filename (g_get_user_config_dir (), "epiphany", NULL); } |