aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-format.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-07-12 04:01:32 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-07-12 04:01:32 +0800
commitf87d11c476413fa6a48648dbdd5dcab1fbd1a28d (patch)
tree574fcbe9820290d2af983d075777a8bd699f3e4c /mail/mail-format.c
parent328f551032cd8520da879aaa71f9f5c06539f644 (diff)
downloadgsoc2013-evolution-f87d11c476413fa6a48648dbdd5dcab1fbd1a28d.tar
gsoc2013-evolution-f87d11c476413fa6a48648dbdd5dcab1fbd1a28d.tar.gz
gsoc2013-evolution-f87d11c476413fa6a48648dbdd5dcab1fbd1a28d.tar.bz2
gsoc2013-evolution-f87d11c476413fa6a48648dbdd5dcab1fbd1a28d.tar.lz
gsoc2013-evolution-f87d11c476413fa6a48648dbdd5dcab1fbd1a28d.tar.xz
gsoc2013-evolution-f87d11c476413fa6a48648dbdd5dcab1fbd1a28d.tar.zst
gsoc2013-evolution-f87d11c476413fa6a48648dbdd5dcab1fbd1a28d.zip
Rename "Save to disk..." to "Save Attachment..."
2002-07-11 Jeffrey Stedfast <fejj@ximian.com> * mail-display.c (pixmap_press): Rename "Save to disk..." to "Save Attachment..." svn path=/trunk/; revision=17422
Diffstat (limited to 'mail/mail-format.c')
-rw-r--r--mail/mail-format.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/mail/mail-format.c b/mail/mail-format.c
index 96b677b55b..bd8c033b4c 100644
--- a/mail/mail-format.c
+++ b/mail/mail-format.c
@@ -1792,24 +1792,24 @@ handle_multipart_signed (CamelMimePart *part, const char *mime_type,
g_return_val_if_fail (CAMEL_IS_MULTIPART_SIGNED (wrapper), FALSE);
- mps = CAMEL_MULTIPART_SIGNED(wrapper);
-
+ mps = CAMEL_MULTIPART_SIGNED (wrapper);
+
/* if subpart & signature is null, what do we do? just write it out raw?
multipart_signed will, if it cannot parse properly, put everything in the first part
this includes: more or less than 2 parts */
-
+
/* output the content */
subpart = camel_multipart_get_part((CamelMultipart *)mps, CAMEL_MULTIPART_SIGNED_CONTENT);
if (subpart == NULL)
return FALSE;
-
+
output = format_mime_part (subpart, md, html, stream);
-
+
/* now handle the signature */
subpart = camel_multipart_get_part((CamelMultipart *)mps, CAMEL_MULTIPART_SIGNED_SIGNATURE);
if (subpart == NULL)
return FALSE;
-
+
mail_part_set_default_displayed_inline(subpart, md, FALSE);
if (!mail_part_is_displayed_inline (subpart, md) && !md->printing) {