aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2001-10-18 00:08:54 +0800
committerDan Winship <danw@src.gnome.org>2001-10-18 00:08:54 +0800
commitee6a2b01f9e52483d9aa82eff213d36450d2bb9a (patch)
treed8a05e168eb8c62740223655d09162fe5b4f4259 /mail
parentf6fbb4a8c387e056b74391ee232b3d08ca34e3f7 (diff)
downloadgsoc2013-evolution-ee6a2b01f9e52483d9aa82eff213d36450d2bb9a.tar
gsoc2013-evolution-ee6a2b01f9e52483d9aa82eff213d36450d2bb9a.tar.gz
gsoc2013-evolution-ee6a2b01f9e52483d9aa82eff213d36450d2bb9a.tar.bz2
gsoc2013-evolution-ee6a2b01f9e52483d9aa82eff213d36450d2bb9a.tar.lz
gsoc2013-evolution-ee6a2b01f9e52483d9aa82eff213d36450d2bb9a.tar.xz
gsoc2013-evolution-ee6a2b01f9e52483d9aa82eff213d36450d2bb9a.tar.zst
gsoc2013-evolution-ee6a2b01f9e52483d9aa82eff213d36450d2bb9a.zip
Make Reply-To bold too since no one ever figures out why it's not
* mail-format.c (write_default_header): Make Reply-To bold too since no one ever figures out why it's not currently. svn path=/trunk/; revision=13723
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/mail-format.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 2376255582..9972633b9f 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,8 @@
+2001-10-17 Dan Winship <danw@ximian.com>
+
+ * mail-format.c (write_default_header): Make Reply-To bold too
+ since no one ever figures out why it's not currently.
+
2001-10-17 Iain Holmes <iain@ximian.com>
* importers/evolution-mbox-importer.c: Fix the typo.
diff --git a/mail/mail-format.c b/mail/mail-format.c
index 0e92ddebd1..27c6cb3677 100644
--- a/mail/mail-format.c
+++ b/mail/mail-format.c
@@ -909,7 +909,7 @@ write_default_header(CamelMimeMessage *message, MailDisplay *md, int index, int
write_address (md, camel_mime_message_get_from (message), _("From"), flags | WRITE_BOLD);
break;
case 1:
- write_address (md, camel_mime_message_get_reply_to (message), _("Reply-To"), flags);
+ write_address (md, camel_mime_message_get_reply_to (message), _("Reply-To"), flags | WRITE_BOLD);
break;
case 2:
write_address(md, camel_mime_message_get_recipients(message, CAMEL_RECIPIENT_TYPE_TO),