aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/local/camel-mh-folder.c
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-mh-folder.c
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-mh-folder.c')
-rw-r--r--camel/providers/local/camel-mh-folder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/providers/local/camel-mh-folder.c b/camel/providers/local/camel-mh-folder.c
index 5f71ab09ea..fd054933c5 100644
--- a/camel/providers/local/camel-mh-folder.c
+++ b/camel/providers/local/camel-mh-folder.c
@@ -50,7 +50,7 @@ static CamelLocalFolderClass *parent_class = NULL;
#define CF_CLASS(so) CAMEL_FOLDER_CLASS (CAMEL_OBJECT_GET_CLASS(so))
#define CMHS_CLASS(so) CAMEL_STORE_CLASS (CAMEL_OBJECT_GET_CLASS(so))
-static CamelLocalSummary *mh_create_summary(const char *path, const char *folder, CamelIndex *index);
+static CamelLocalSummary *mh_create_summary(CamelLocalFolder *lf, const char *path, const char *folder, CamelIndex *index);
static void mh_append_message(CamelFolder * folder, CamelMimeMessage * message, const CamelMessageInfo *info, char **appended_uid, CamelException * ex);
static CamelMimeMessage *mh_get_message(CamelFolder * folder, const gchar * uid, CamelException * ex);
@@ -115,7 +115,7 @@ camel_mh_folder_new(CamelStore *parent_store, const char *full_name, guint32 fla
return folder;
}
-static CamelLocalSummary *mh_create_summary(const char *path, const char *folder, CamelIndex *index)
+static CamelLocalSummary *mh_create_summary(CamelLocalFolder *lf, const char *path, const char *folder, CamelIndex *index)
{
return (CamelLocalSummary *)camel_mh_summary_new(path, folder, index);
}