diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-01-22 13:09:21 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-01-22 13:12:32 +0800 |
commit | f3d590d42dfca31d58e14d9f23fed82ca1d4c25e (patch) | |
tree | 64edd4dd09ec903864b505d21c1d8328aceb2e35 | |
parent | 678f9d39a88ca913ed5fb22e3c58c1177ec8bdfa (diff) | |
download | gsoc2013-evolution-f3d590d42dfca31d58e14d9f23fed82ca1d4c25e.tar.gz gsoc2013-evolution-f3d590d42dfca31d58e14d9f23fed82ca1d4c25e.tar.zst gsoc2013-evolution-f3d590d42dfca31d58e14d9f23fed82ca1d4c25e.zip |
Revert commit for bug #516000 to fix bug #607591.
Commit 25dd724999d551f2f59b06909cff7c660a3c3dab for bug 516000 ("Wrong
formatted quoted text") caused bug 607591 ("Erratic wrapping of quoted
sections").
-rw-r--r-- | em-format/em-format-quote.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/em-format/em-format-quote.c b/em-format/em-format-quote.c index f77a6fb40a..5ec5e19776 100644 --- a/em-format/em-format-quote.c +++ b/em-format/em-format-quote.c @@ -29,7 +29,6 @@ #include <camel/camel-iconv.h> #include <camel/camel-stream-filter.h> -#include <camel/camel-mime-filter-linewrap.h> #include <camel/camel-mime-filter-tohtml.h> #include <camel/camel-mime-filter-enriched.h> #include <camel/camel-string-utils.h> @@ -490,7 +489,6 @@ emfq_text_plain(EMFormatQuote *emfq, CamelStream *stream, CamelMimePart *part, E CamelStreamFilter *filtered_stream; CamelMimeFilter *html_filter; CamelMimeFilter *sig_strip; - CamelMimeFilter *wrap_filter; CamelContentType *type; const gchar *format; guint32 rgb = 0x737373, flags; @@ -515,10 +513,6 @@ emfq_text_plain(EMFormatQuote *emfq, CamelStream *stream, CamelMimePart *part, E camel_object_unref (sig_strip); } - wrap_filter = camel_mime_filter_linewrap_new (70, 70, 0, CAMEL_MIME_FILTER_LINEWRAP_WORD); - camel_stream_filter_add (filtered_stream, wrap_filter); - camel_object_unref (wrap_filter); - html_filter = camel_mime_filter_tohtml_new(flags, rgb); camel_stream_filter_add(filtered_stream, html_filter); camel_object_unref(html_filter); |