aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2003-10-22 04:36:18 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-10-22 04:36:18 +0800
commitfd56880083a4e45e52fea824348025c269da755f (patch)
treea7dadd7fb160846c8e2901024941ae09b08a591a
parent1b201f8d76d4dbedfb1e3cf894bf5715a040d938 (diff)
downloadgsoc2013-evolution-fd56880083a4e45e52fea824348025c269da755f.tar
gsoc2013-evolution-fd56880083a4e45e52fea824348025c269da755f.tar.gz
gsoc2013-evolution-fd56880083a4e45e52fea824348025c269da755f.tar.bz2
gsoc2013-evolution-fd56880083a4e45e52fea824348025c269da755f.tar.lz
gsoc2013-evolution-fd56880083a4e45e52fea824348025c269da755f.tar.xz
gsoc2013-evolution-fd56880083a4e45e52fea824348025c269da755f.tar.zst
gsoc2013-evolution-fd56880083a4e45e52fea824348025c269da755f.zip
Put an <hr> between parts of a multipart.
2003-10-21 Jeffrey Stedfast <fejj@ximian.com> * em-format.c (emf_multipart_mixed): Put an <hr> between parts of a multipart. svn path=/trunk/; revision=22969
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/em-format.c5
2 files changed, 7 insertions, 3 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index ce8d617365..826ee496e6 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,8 @@
+2003-10-21 Jeffrey Stedfast <fejj@ximian.com>
+
+ * em-format.c (emf_multipart_mixed): Put an <hr> between parts of
+ a multipart.
+
2003-10-21 Not Zed <NotZed@Ximian.com>
* mail-component.c (emc_popup_properties): implement.
diff --git a/mail/em-format.c b/mail/em-format.c
index 2b8b70b14e..f39cafee0c 100644
--- a/mail/em-format.c
+++ b/mail/em-format.c
@@ -974,9 +974,8 @@ emf_multipart_mixed(EMFormat *emf, CamelStream *stream, CamelMimePart *part, con
nparts = camel_multipart_get_number(mp);
for (i = 0; i < nparts; i++) {
- /* FIXME: separate part markers ...
if (i != 0)
- camel_stream_printf(stream, "<hr>\n");*/
+ camel_stream_printf (stream, "<hr>\n");
part = camel_multipart_get_part(mp, i);
em_format_part(emf, stream, part);
@@ -996,7 +995,7 @@ emf_multipart_alternative(EMFormat *emf, CamelStream *stream, CamelMimePart *par
return;
}
- /* as pre rfc, find the last part we know how to display */
+ /* as per rfc, find the last part we know how to display */
nparts = camel_multipart_get_number(mp);
for (i = 0; i < nparts; i++) {
CamelMimePart *part = camel_multipart_get_part(mp, i);