aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-display.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-07-18 03:51:41 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-07-18 03:51:41 +0800
commitde5890b84b581099ab27937f9dd592f4658efdc0 (patch)
tree926671e7b2d4b86ed78ba6aecfeb57d942380070 /mail/mail-display.c
parent2890d2c2a1ffdd60f0540b04d7e569c0d8b84127 (diff)
downloadgsoc2013-evolution-de5890b84b581099ab27937f9dd592f4658efdc0.tar
gsoc2013-evolution-de5890b84b581099ab27937f9dd592f4658efdc0.tar.gz
gsoc2013-evolution-de5890b84b581099ab27937f9dd592f4658efdc0.tar.bz2
gsoc2013-evolution-de5890b84b581099ab27937f9dd592f4658efdc0.tar.lz
gsoc2013-evolution-de5890b84b581099ab27937f9dd592f4658efdc0.tar.xz
gsoc2013-evolution-de5890b84b581099ab27937f9dd592f4658efdc0.tar.zst
gsoc2013-evolution-de5890b84b581099ab27937f9dd592f4658efdc0.zip
Cleaned up a bit. (handle_multipart_encrypted): Replace the encrypted part
2001-07-17 Jeffrey Stedfast <fejj@ximian.com> * mail-format.c (mail_part_toggle_displayed): Cleaned up a bit. (handle_multipart_encrypted): Replace the encrypted part with the decrypted part. svn path=/trunk/; revision=11166
Diffstat (limited to 'mail/mail-display.c')
-rw-r--r--mail/mail-display.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/mail-display.c b/mail/mail-display.c
index 2a0748eb39..53251430d1 100644
--- a/mail/mail-display.c
+++ b/mail/mail-display.c
@@ -1197,14 +1197,14 @@ mail_display_redisplay (MailDisplay *md, gboolean unscroll)
mail_html_write (md->html, md->stream, "<!doctype html public \"-//W3C//DTD HTML 4.0 TRANSITIONAL//EN\">\n<html>\n<head>\n<meta name=\"generator\" content=\"Evolution Mail Component\">\n</head>\n");
mail_html_write (md->html, md->stream, "<body marginwidth=0 marginheight=0>\n");
-
+
if (md->current_message) {
if (md->display_style == MAIL_CONFIG_DISPLAY_SOURCE)
mail_format_raw_message (md->current_message, md);
else
mail_format_mime_message (md->current_message, md);
}
-
+
mail_html_write (md->html, md->stream, "</body></html>\n");
gtk_html_end (md->html, md->stream, GTK_HTML_STREAM_OK);
md->stream = NULL;