aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/mbox/camel-mbox-folder.h
diff options
context:
space:
mode:
authorbertrand <bertrand@helixcode.com>2000-01-26 02:28:02 +0800
committerBertrand Guiheneuf <bertrand@src.gnome.org>2000-01-26 02:28:02 +0800
commitbb2f8ae373b1ab3fbf2e907d894c4c21c6f2975c (patch)
tree37b0aec15e9966fc46b9fbc8167796c63b3bf6b5 /camel/providers/mbox/camel-mbox-folder.h
parent63eccb1c488fd5dca8d6717adaae08e8866baa24 (diff)
downloadgsoc2013-evolution-bb2f8ae373b1ab3fbf2e907d894c4c21c6f2975c.tar
gsoc2013-evolution-bb2f8ae373b1ab3fbf2e907d894c4c21c6f2975c.tar.gz
gsoc2013-evolution-bb2f8ae373b1ab3fbf2e907d894c4c21c6f2975c.tar.bz2
gsoc2013-evolution-bb2f8ae373b1ab3fbf2e907d894c4c21c6f2975c.tar.lz
gsoc2013-evolution-bb2f8ae373b1ab3fbf2e907d894c4c21c6f2975c.tar.xz
gsoc2013-evolution-bb2f8ae373b1ab3fbf2e907d894c4c21c6f2975c.tar.zst
gsoc2013-evolution-bb2f8ae373b1ab3fbf2e907d894c4c21c6f2975c.zip
renamed mbox_folder->summary to mbox_folder->internal_summary to avoid
2000-01-26 bertrand <bertrand@helixcode.com> * camel/providers/mbox/camel-mbox-folder.c: renamed mbox_folder->summary to mbox_folder->internal_summary to avoid confusion with the camel_folder->summary field. (_append_message): (_check_get_or_maybe_generate_summary_file): update the external summary thingie. * camel/camel-folder-summary.c (camel_folder_summary_new): create the message and folder info arrays. * camel/providers/mbox/camel-mbox-summary.c (camel_mbox_summary_append_internal_to_external): new function to append entries from the internal summary to the external one. * camel/providers/mbox/camel-mbox-folder.c (_append_message): reflect name change. * camel/providers/mbox/camel-mbox-summary.c (camel_mbox_summary_append_entries): namespace fix. svn path=/trunk/; revision=1632
Diffstat (limited to 'camel/providers/mbox/camel-mbox-folder.h')
-rw-r--r--camel/providers/mbox/camel-mbox-folder.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/camel/providers/mbox/camel-mbox-folder.h b/camel/providers/mbox/camel-mbox-folder.h
index 0923d28d2e..9fdc765103 100644
--- a/camel/providers/mbox/camel-mbox-folder.h
+++ b/camel/providers/mbox/camel-mbox-folder.h
@@ -47,12 +47,15 @@ extern "C" {
typedef struct {
CamelFolder parent_object;
+
+ CamelFolderSummary *external_summary;
+ /* the external summary is intended to be read by callers */
gchar *folder_file_path; /* contains the messages */
gchar *summary_file_path; /* contains the messages summary */
gchar *folder_dir_path; /* contains the subfolders */
- CamelMboxSummary *summary; /* internal summary object */
+ CamelMboxSummary *internal_summary; /* internal summary object */
GList *uid_array;
} CamelMboxFolder;