aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2008-02-19 16:51:16 +0800
committerMilan Crha <mcrha@src.gnome.org>2008-02-19 16:51:16 +0800
commitd3db6453d58ba44b0fb77ab6024c24bec8b6e388 (patch)
tree7621a0417616e683e777cbdae64527bb03c6e2af /mail
parenta717e80faeef384d5cdad2425fc574acb31ab747 (diff)
downloadgsoc2013-evolution-d3db6453d58ba44b0fb77ab6024c24bec8b6e388.tar
gsoc2013-evolution-d3db6453d58ba44b0fb77ab6024c24bec8b6e388.tar.gz
gsoc2013-evolution-d3db6453d58ba44b0fb77ab6024c24bec8b6e388.tar.bz2
gsoc2013-evolution-d3db6453d58ba44b0fb77ab6024c24bec8b6e388.tar.lz
gsoc2013-evolution-d3db6453d58ba44b0fb77ab6024c24bec8b6e388.tar.xz
gsoc2013-evolution-d3db6453d58ba44b0fb77ab6024c24bec8b6e388.tar.zst
gsoc2013-evolution-d3db6453d58ba44b0fb77ab6024c24bec8b6e388.zip
** Fix for bug #516349
2008-02-19 Milan Crha <mcrha@redhat.com> ** Fix for bug #516349 * em-format-quote.c: (emfq_format_message): Do not force black text in quotation part of the message. svn path=/trunk/; revision=35050
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog7
-rw-r--r--mail/em-format-quote.c6
2 files changed, 9 insertions, 4 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index ed1bf8f535..d3da82cd77 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,10 @@
+2008-02-19 Milan Crha <mcrha@redhat.com>
+
+ ** Fix for bug #516349
+
+ * em-format-quote.c: (emfq_format_message):
+ Do not force black text in quotation part of the message.
+
2008-02-18 Milan Crha <mcrha@redhat.com>
** Part of fix for bug #515744
diff --git a/mail/em-format-quote.c b/mail/em-format-quote.c
index 69626b951a..f14a2dc091 100644
--- a/mail/em-format-quote.c
+++ b/mail/em-format-quote.c
@@ -391,9 +391,7 @@ emfq_format_message(EMFormat *emf, CamelStream *stream, CamelMimePart *part, con
if (emfq->flags & EM_FORMAT_QUOTE_CITE)
camel_stream_printf(stream, "<!--+GtkHTML:<DATA class=\"ClueFlow\" key=\"orig\" value=\"1\">-->\n"
- "<blockquote type=cite>\n"
- "<font color=\"#%06x\">\n",
- emfq->citation_colour & 0xffffff);
+ "<blockquote type=cite>\n");
if (((CamelMimePart *)emf->message) != part) {
camel_stream_printf(stream, "%s</br>\n", _("-------- Forwarded Message --------"));
@@ -404,7 +402,7 @@ emfq_format_message(EMFormat *emf, CamelStream *stream, CamelMimePart *part, con
em_format_part (emf, stream, part);
if (emfq->flags & EM_FORMAT_QUOTE_CITE)
- camel_stream_write_string(stream, "</blockquote></font><!--+GtkHTML:<DATA class=\"ClueFlow\" clear=\"orig\">-->");
+ camel_stream_write_string(stream, "</blockquote><!--+GtkHTML:<DATA class=\"ClueFlow\" clear=\"orig\">-->");
}
static void