aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-data-wrapper.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2003-06-12 12:48:05 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-06-12 12:48:05 +0800
commit5ea1f1d1cff441f1cb25a9ee02a17fe62984003c (patch)
tree6586dccddfa6d185b531808b801d71d58c95434e /camel/camel-data-wrapper.c
parent5cabf1be00f596a7497d50b3d72bce841bdaed91 (diff)
downloadgsoc2013-evolution-5ea1f1d1cff441f1cb25a9ee02a17fe62984003c.tar
gsoc2013-evolution-5ea1f1d1cff441f1cb25a9ee02a17fe62984003c.tar.gz
gsoc2013-evolution-5ea1f1d1cff441f1cb25a9ee02a17fe62984003c.tar.bz2
gsoc2013-evolution-5ea1f1d1cff441f1cb25a9ee02a17fe62984003c.tar.lz
gsoc2013-evolution-5ea1f1d1cff441f1cb25a9ee02a17fe62984003c.tar.xz
gsoc2013-evolution-5ea1f1d1cff441f1cb25a9ee02a17fe62984003c.tar.zst
gsoc2013-evolution-5ea1f1d1cff441f1cb25a9ee02a17fe62984003c.zip
Partial fix for bug #44457.
2003-06-11 Jeffrey Stedfast <fejj@ximian.com> Partial fix for bug #44457. * camel-mime-part-utils.c (simple_data_wrapper_construct_from_parser): Make sure to set rawtext to FALSE if we successfully convert the text to UTF-8. * camel-data-wrapper.c (camel_data_wrapper_init): Default the value of rawtext to TRUE instead of FALSE. This way if the mailer decides to try displaying a non-textual part as text, it knows that it needs to convert the content to UTF-8. svn path=/trunk/; revision=21420
Diffstat (limited to 'camel/camel-data-wrapper.c')
-rw-r--r--camel/camel-data-wrapper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-data-wrapper.c b/camel/camel-data-wrapper.c
index de0e2e2cf0..e1d27896a4 100644
--- a/camel/camel-data-wrapper.c
+++ b/camel/camel-data-wrapper.c
@@ -76,7 +76,7 @@ camel_data_wrapper_init (gpointer object, gpointer klass)
camel_data_wrapper->mime_type = header_content_type_new ("application", "octet-stream");
camel_data_wrapper->offline = FALSE;
- camel_data_wrapper->rawtext = FALSE;
+ camel_data_wrapper->rawtext = TRUE;
}
static void