aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-filter-tohtml.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-11-11 23:14:49 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-11-11 23:14:49 +0800
commitc2793329a93b03bcf7ba6bdaf4dadd7d0c52c0d8 (patch)
treeb288cdefa202e3ec74a11c72ebba2e64cbf1e93c /camel/camel-mime-filter-tohtml.h
parente1ef0a9ced256cb86d19b379c3097efdbcdb498e (diff)
downloadgsoc2013-evolution-c2793329a93b03bcf7ba6bdaf4dadd7d0c52c0d8.tar
gsoc2013-evolution-c2793329a93b03bcf7ba6bdaf4dadd7d0c52c0d8.tar.gz
gsoc2013-evolution-c2793329a93b03bcf7ba6bdaf4dadd7d0c52c0d8.tar.bz2
gsoc2013-evolution-c2793329a93b03bcf7ba6bdaf4dadd7d0c52c0d8.tar.lz
gsoc2013-evolution-c2793329a93b03bcf7ba6bdaf4dadd7d0c52c0d8.tar.xz
gsoc2013-evolution-c2793329a93b03bcf7ba6bdaf4dadd7d0c52c0d8.tar.zst
gsoc2013-evolution-c2793329a93b03bcf7ba6bdaf4dadd7d0c52c0d8.zip
Rewritten. Much much much cleaner implementation now, though uses
2002-11-11 Jeffrey Stedfast <fejj@ximian.com> * camel-mime-filter-tohtml.c (html_convert): Rewritten. Much much much cleaner implementation now, though uses malloc/free more often than I'd like. svn path=/trunk/; revision=18691
Diffstat (limited to 'camel/camel-mime-filter-tohtml.h')
-rw-r--r--camel/camel-mime-filter-tohtml.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/camel/camel-mime-filter-tohtml.h b/camel/camel-mime-filter-tohtml.h
index 46c4051b87..d8c6e47f41 100644
--- a/camel/camel-mime-filter-tohtml.h
+++ b/camel/camel-mime-filter-tohtml.h
@@ -50,13 +50,13 @@ typedef struct _CamelMimeFilterToHTML CamelMimeFilterToHTML;
struct _CamelMimeFilterToHTML {
CamelMimeFilter parent;
+ struct _UrlRegexPattern *patterns;
+
guint32 flags;
guint32 colour;
- guint32 column : 29;
- guint32 pre_open : 1;
- guint32 saw_citation : 1;
- guint32 coloured : 1;
+ guint32 column : 31;
+ guint32 pre_open : 1;
};
struct _CamelMimeFilterToHTMLClass {