diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-07-09 04:59:11 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-07-09 04:59:11 +0800 |
commit | f92b45d7df69c958bb4fc606831bc51ee2bcc914 (patch) | |
tree | 704ffb1fe55bb37673436695c2d4e49efab8e7b4 /e-util/e-util.h | |
parent | ae4e6007efece29bf587f3193e7c57ad7f7d81dc (diff) | |
download | gsoc2013-evolution-f92b45d7df69c958bb4fc606831bc51ee2bcc914.tar.gz gsoc2013-evolution-f92b45d7df69c958bb4fc606831bc51ee2bcc914.tar.zst gsoc2013-evolution-f92b45d7df69c958bb4fc606831bc51ee2bcc914.zip |
Fix places where "~/.evolution" is hard-coded.
Also replace "$USER_DATA_DIR/cache" path constructions with
e_get_user_cache_dir().
Diffstat (limited to 'e-util/e-util.h')
-rw-r--r-- | e-util/e-util.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/e-util/e-util.h b/e-util/e-util.h index 6f7e56b07f..e3ce5cb103 100644 --- a/e-util/e-util.h +++ b/e-util/e-util.h @@ -30,6 +30,10 @@ #include <e-util/e-marshal.h> +/* e_get_user_data_dir() used to live here, so #include its new home + * for backward-compatibility (not that we really care about that). */ +#include <libedataserver/e-data-server-util.h> + /* Convenience macro to help migrate from libglade to GtkBuilder. * Use it as a direct replacement for glade_xml_get_widget(). */ #define e_builder_get_widget(builder, name) \ @@ -46,7 +50,6 @@ typedef enum { typedef void (*ETypeFunc) (GType type, gpointer user_data); -const gchar * e_get_user_data_dir (void); const gchar * e_get_gnome2_user_dir (void); const gchar * e_get_accels_filename (void); void e_show_uri (GtkWindow *parent, |