diff options
author | Dan Winship <danw@src.gnome.org> | 2003-02-07 02:44:33 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-02-07 02:44:33 +0800 |
commit | 8b11adc287a5ddfe4f5639dc5c1498043707b8da (patch) | |
tree | 50dd21c784dfd30ee78dff6c74496e9ab279b965 /mail/component-factory.c | |
parent | 3a315cf4f36f13f791b6b728531ba4704c13b186 (diff) | |
download | gsoc2013-evolution-8b11adc287a5ddfe4f5639dc5c1498043707b8da.tar gsoc2013-evolution-8b11adc287a5ddfe4f5639dc5c1498043707b8da.tar.gz gsoc2013-evolution-8b11adc287a5ddfe4f5639dc5c1498043707b8da.tar.bz2 gsoc2013-evolution-8b11adc287a5ddfe4f5639dc5c1498043707b8da.tar.lz gsoc2013-evolution-8b11adc287a5ddfe4f5639dc5c1498043707b8da.tar.xz gsoc2013-evolution-8b11adc287a5ddfe4f5639dc5c1498043707b8da.tar.zst gsoc2013-evolution-8b11adc287a5ddfe4f5639dc5c1498043707b8da.zip |
add EVOLUTION_PRIVDATADIR
* Makefile.am (INCLUDES): add EVOLUTION_PRIVDATADIR
* component-factory.c (owner_set_cb): Use EVOLUTION_PRIVDATADIR
* mail-autofilter.c (filter_gui_add_from_message): Likewise
(mail_filter_rename_uri): Likewise
(mail_filter_delete_uri): Likewise
* mail-callbacks.c (filter_edit): Likewise.
* mail-search-dialogue.c (mail_search_dialogue_construct):
Likewise
* mail-session.c (main_get_filter_driver): Likewise
* mail-summary.c (generate_folder_summaries): Likewise
* mail-vfolder.c (vfolder_load_storage): Likewise
svn path=/trunk/; revision=19824
Diffstat (limited to 'mail/component-factory.c')
-rw-r--r-- | mail/component-factory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/component-factory.c b/mail/component-factory.c index 1716b2393d..9783283c81 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -799,7 +799,7 @@ owner_set_cb (EvolutionShellComponent *shell_component, { /* setup the global quick-search context */ char *user = g_strdup_printf ("%s/searches.xml", evolution_dir); - char *system = g_strdup (EVOLUTION_DATADIR "/evolution-" BASE_VERSION "/vfoldertypes.xml"); + char *system = g_strdup (EVOLUTION_PRIVDATADIR "/vfoldertypes.xml"); search_context = rule_context_new (); g_object_set_data_full(G_OBJECT(search_context), "user", user, g_free); |