aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-folder-summary.h
diff options
context:
space:
mode:
authorbertrand <bertrand@helixcode.com>2000-01-19 12:33:14 +0800
committerBertrand Guiheneuf <bertrand@src.gnome.org>2000-01-19 12:33:14 +0800
commitd44875ac5f2dfc7753cc33281c5fc8a866edd0b7 (patch)
tree8387b2fee5cb9f041f4fedeb2b76ab800d8929e9 /camel/camel-folder-summary.h
parentbd4e64bd780fc0e39832f5c5abf1a15522fa6076 (diff)
downloadgsoc2013-evolution-d44875ac5f2dfc7753cc33281c5fc8a866edd0b7.tar
gsoc2013-evolution-d44875ac5f2dfc7753cc33281c5fc8a866edd0b7.tar.gz
gsoc2013-evolution-d44875ac5f2dfc7753cc33281c5fc8a866edd0b7.tar.bz2
gsoc2013-evolution-d44875ac5f2dfc7753cc33281c5fc8a866edd0b7.tar.lz
gsoc2013-evolution-d44875ac5f2dfc7753cc33281c5fc8a866edd0b7.tar.xz
gsoc2013-evolution-d44875ac5f2dfc7753cc33281c5fc8a866edd0b7.tar.zst
gsoc2013-evolution-d44875ac5f2dfc7753cc33281c5fc8a866edd0b7.zip
tests for summary and parsing process of mbox files.
2000-01-18 bertrand <bertrand@helixcode.com> * tests/test9.c: tests for summary and parsing process of mbox files. * camel/providers/mbox/camel-mbox-parser.c (camel_mbox_parse_file): do not use case insensitive comp to detect message separators. Kill some nasty bugs in netscape file parsing, * camel/providers/mbox/camel-mbox-utils.c (parsed_information_to_mbox_summary): don't use g_array_append but write directly inside the array data instead. Better performance and bug fix. * camel/providers/mbox/camel-mbox-summary.c (camel_mbox_load_summary): fix the name and bugs. * camel/camel-folder-summary.h: update the class method definition to match the public defs. svn path=/trunk/; revision=1592
Diffstat (limited to 'camel/camel-folder-summary.h')
-rw-r--r--camel/camel-folder-summary.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-folder-summary.h b/camel/camel-folder-summary.h
index b89c546090..414e7a24c9 100644
--- a/camel/camel-folder-summary.h
+++ b/camel/camel-folder-summary.h
@@ -85,8 +85,8 @@ typedef struct {
GtkObjectClass parent_class;
/* Virtual methods */
- const GList * (*get_subfolder_info_list) (CamelFolderSummary *summary);
- const GList * (*get_message_info_list) (CamelFolderSummary *summary);
+ const GArray * (*get_subfolder_info_list) (CamelFolderSummary *summary);
+ const GArray * (*get_message_info_list) (CamelFolderSummary *summary);
} CamelFolderSummaryClass;