aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/local/camel-local-folder.h
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-09-28 12:32:13 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-09-28 12:32:13 +0800
commitf3c3a422abf537dcfc24030433e9556d34d71492 (patch)
tree7c4f1556de175249a8b2ed474e4f28b26b18ab70 /camel/providers/local/camel-local-folder.h
parentabfce8d7d7a749b0073e3140ed2157b230f5d136 (diff)
downloadgsoc2013-evolution-f3c3a422abf537dcfc24030433e9556d34d71492.tar
gsoc2013-evolution-f3c3a422abf537dcfc24030433e9556d34d71492.tar.gz
gsoc2013-evolution-f3c3a422abf537dcfc24030433e9556d34d71492.tar.bz2
gsoc2013-evolution-f3c3a422abf537dcfc24030433e9556d34d71492.tar.lz
gsoc2013-evolution-f3c3a422abf537dcfc24030433e9556d34d71492.tar.xz
gsoc2013-evolution-f3c3a422abf537dcfc24030433e9556d34d71492.tar.zst
gsoc2013-evolution-f3c3a422abf537dcfc24030433e9556d34d71492.zip
make sure body indexing is turned off always, missed the ~ bit.
2004-09-27 Not Zed <NotZed@Ximian.com> * providers/local/camel-spool-folder.c (camel_spool_folder_new): make sure body indexing is turned off always, missed the ~ bit. * providers/local/camel-spool-store.c (camel_folder_info_new): dont take unread count. (spool_fill_fi): copied from mbox more or less. (scan_dir): use fill_fi to setup counts. (spool_new_fi): replace camel_foldeR_info_new with one that does most of the work, also generates uri's properly. (get_folder_info_mbox): make the 'system' inbox name translatable. * providers/local/camel-mbox-folder.h: make the camel_mbox_folder_get* functions properly public. * providers/local/camel-local-folder.h: pass the object to the virtual methods now, fix all callers. * providers/local/camel-spool-folder.c (spool_get_full_path) (spool_get_meta_path): implement, this needs to work differnetly to the parent classes implementations :-/. svn path=/trunk/; revision=27407
Diffstat (limited to 'camel/providers/local/camel-local-folder.h')
-rw-r--r--camel/providers/local/camel-local-folder.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/camel/providers/local/camel-local-folder.h b/camel/providers/local/camel-local-folder.h
index 00669e738b..4aec420813 100644
--- a/camel/providers/local/camel-local-folder.h
+++ b/camel/providers/local/camel-local-folder.h
@@ -75,11 +75,11 @@ typedef struct {
/* Virtual methods */
/* path construction, only used at init */
- char * (* get_full_path)(const char *toplevel_dir, const char *full_name);
- char * (* get_meta_path)(const char *toplevel_dir, const char *full_name, const char *ext);
+ char * (* get_full_path)(CamelLocalFolder *lf, const char *toplevel_dir, const char *full_name);
+ char * (* get_meta_path)(CamelLocalFolder *lf, const char *toplevel_dir, const char *full_name, const char *ext);
/* summary factory, only used at init */
- CamelLocalSummary *(*create_summary)(const char *path, const char *folder, CamelIndex *index);
+ CamelLocalSummary *(*create_summary)(CamelLocalFolder *lf, const char *path, const char *folder, CamelIndex *index);
/* Lock the folder for my operations */
int (*lock)(CamelLocalFolder *, CamelLockType type, CamelException *ex);