diff options
author | Milan Crha <mcrha@redhat.com> | 2008-02-19 16:51:16 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2008-02-19 16:51:16 +0800 |
commit | d3db6453d58ba44b0fb77ab6024c24bec8b6e388 (patch) | |
tree | 7621a0417616e683e777cbdae64527bb03c6e2af /mail/em-format-quote.c | |
parent | a717e80faeef384d5cdad2425fc574acb31ab747 (diff) | |
download | gsoc2013-evolution-d3db6453d58ba44b0fb77ab6024c24bec8b6e388.tar.gz 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/em-format-quote.c')
-rw-r--r-- | mail/em-format-quote.c | 6 |
1 files changed, 2 insertions, 4 deletions
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 |