diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-09-21 11:13:43 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-09-28 23:35:55 +0800 |
commit | 31b57ed0383b2ea225195d4b72a872f7f2d93163 (patch) | |
tree | 2d70adcce04ed1ed5111c06cd7ad93266419b0e0 /em-format/em-format.h | |
parent | a91eeb647138ee035444cdc3c265fa4e95898f29 (diff) | |
download | gsoc2013-evolution-31b57ed0383b2ea225195d4b72a872f7f2d93163.tar.gz gsoc2013-evolution-31b57ed0383b2ea225195d4b72a872f7f2d93163.tar.zst gsoc2013-evolution-31b57ed0383b2ea225195d4b72a872f7f2d93163.zip |
Adapt to Camel API changes.
Diffstat (limited to 'em-format/em-format.h')
-rw-r--r-- | em-format/em-format.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/em-format/em-format.h b/em-format/em-format.h index 64f1d5fbea..64336a9aa8 100644 --- a/em-format/em-format.h +++ b/em-format/em-format.h @@ -273,7 +273,8 @@ struct _EMFormatClass { /* use for unparsable content */ void (*format_source) (EMFormat *emf, CamelStream *stream, - CamelMimePart *mime_part); + CamelMimePart *mime_part, + GCancellable *cancellable); /* for outputing secure(d) content */ void (*format_secure) (EMFormat *emf, CamelStream *stream, @@ -288,7 +289,8 @@ struct _EMFormatClass { void (*format_optional) (EMFormat *emf, CamelStream *filter_stream, CamelMimePart *mime_part, - CamelStream *mem_stream); + CamelStream *mem_stream, + GCancellable *cancellable); gboolean (*is_inline) (EMFormat *emf, const gchar *part_id, @@ -392,7 +394,8 @@ void em_format_format_secure (EMFormat *emf, GCancellable *cancellable); void em_format_format_source (EMFormat *emf, CamelStream *stream, - CamelMimePart *mime_part); + CamelMimePart *mime_part, + GCancellable *cancellable); gboolean em_format_busy (EMFormat *emf); @@ -405,7 +408,8 @@ void em_format_format_content (EMFormat *emf, /* raw content text parts - should this just be checked/done by above? */ void em_format_format_text (EMFormat *emf, CamelStream *stream, - CamelDataWrapper *part); + CamelDataWrapper *part, + GCancellable *cancellable); void em_format_part_as (EMFormat *emf, CamelStream *stream, |