diff options
author | Not Zed <NotZed@Ximian.com> | 2004-05-18 15:48:19 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-05-18 15:48:19 +0800 |
commit | 283a879d99a633c28597d2ed088781582dfe98a8 (patch) | |
tree | 439fec911c139d155311d5fae52be2dbae280119 /mail/em-format-html.c | |
parent | 6163a33d6924d8b6eb1eef15ae8b789486ea8774 (diff) | |
download | gsoc2013-evolution-283a879d99a633c28597d2ed088781582dfe98a8.tar.gz gsoc2013-evolution-283a879d99a633c28597d2ed088781582dfe98a8.tar.zst gsoc2013-evolution-283a879d99a633c28597d2ed088781582dfe98a8.zip |
** Quick fix for #57434
2004-05-18 Not Zed <NotZed@Ximian.com>
** Quick fix for #57434
* em-format.c (emf_format_clone): fix the FIXME about cloning
headers shown.
* em-format-html.c (efh_format_headers): only show rupert if we're
showing rupert.
* em-format-html-print.c (efhp_init): default show_rupert to off.
* em-format-html.c (efh_init): default show_rupert to on.
* em-format-html.h: added show_rupert bit.
svn path=/trunk/; revision=25953
Diffstat (limited to 'mail/em-format-html.c')
-rw-r--r-- | mail/em-format-html.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/em-format-html.c b/mail/em-format-html.c index dbedb1bf0b..8d10aec9bf 100644 --- a/mail/em-format-html.c +++ b/mail/em-format-html.c @@ -142,6 +142,7 @@ efh_init(GObject *o) efh->content_colour = 0xffffff; efh->text_html_flags = CAMEL_MIME_FILTER_TOHTML_CONVERT_NL | CAMEL_MIME_FILTER_TOHTML_CONVERT_SPACES | CAMEL_MIME_FILTER_TOHTML_MARK_CITATION; + efh->show_rupert = TRUE; } static void @@ -1671,7 +1672,7 @@ efh_format_headers(EMFormatHTML *efh, CamelStream *stream, CamelMedium *part) if (!efh->simple_headers) { camel_stream_printf(stream, "</table></td>"); - if (rupert) { + if (rupert && efh->show_rupert) { char *classid; CamelMimePart *iconpart; |