diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-02-07 01:41:18 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-02-07 02:16:40 +0800 |
commit | c5fae912d155a7e6247d92b3974a615fd17944f0 (patch) | |
tree | 7dc2050b0df17d75490a29a46f3c81f8cfee885f /modules | |
parent | 6b3e0145df863c8f41af4e82a6ba5827a7fb767e (diff) | |
download | gsoc2013-evolution-c5fae912d155a7e6247d92b3974a615fd17944f0.tar gsoc2013-evolution-c5fae912d155a7e6247d92b3974a615fd17944f0.tar.gz gsoc2013-evolution-c5fae912d155a7e6247d92b3974a615fd17944f0.tar.bz2 gsoc2013-evolution-c5fae912d155a7e6247d92b3974a615fd17944f0.tar.lz gsoc2013-evolution-c5fae912d155a7e6247d92b3974a615fd17944f0.tar.xz gsoc2013-evolution-c5fae912d155a7e6247d92b3974a615fd17944f0.tar.zst gsoc2013-evolution-c5fae912d155a7e6247d92b3974a615fd17944f0.zip |
Use CamelMimeFilterToHTMLFlags enum type where appropriate.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/text-highlight/e-mail-formatter-text-highlight.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/text-highlight/e-mail-formatter-text-highlight.c b/modules/text-highlight/e-mail-formatter-text-highlight.c index 5e8c15c16c..aec403c29c 100644 --- a/modules/text-highlight/e-mail-formatter-text-highlight.c +++ b/modules/text-highlight/e-mail-formatter-text-highlight.c @@ -155,8 +155,8 @@ emfe_text_highlight_format (EMailFormatterExtension *extension, filter_stream = camel_stream_filter_new (stream); mime_filter = camel_mime_filter_tohtml_new ( - CAMEL_MIME_FILTER_TOHTML_PRE | - CAMEL_MIME_FILTER_TOHTML_CONVERT_SPACES, 0); + CAMEL_MIME_FILTER_TOHTML_PRE | + CAMEL_MIME_FILTER_TOHTML_CONVERT_SPACES, 0); camel_stream_filter_add ( CAMEL_STREAM_FILTER (filter_stream), mime_filter); g_object_unref (mime_filter); |