diff options
author | bertrand <Bertrand.Guiheneuf@aful.org> | 2000-02-10 05:09:31 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 2000-02-10 05:09:31 +0800 |
commit | 2088dd34013562ec6c051d2b7524e9167bd89a57 (patch) | |
tree | f434005bd7f61345080289d8079f87026f9d78b8 /camel/camel-mime-body-part.c | |
parent | 3bd58106efb22b78e6fbabe9307880338ae92746 (diff) | |
download | gsoc2013-evolution-2088dd34013562ec6c051d2b7524e9167bd89a57.tar gsoc2013-evolution-2088dd34013562ec6c051d2b7524e9167bd89a57.tar.gz gsoc2013-evolution-2088dd34013562ec6c051d2b7524e9167bd89a57.tar.bz2 gsoc2013-evolution-2088dd34013562ec6c051d2b7524e9167bd89a57.tar.lz gsoc2013-evolution-2088dd34013562ec6c051d2b7524e9167bd89a57.tar.xz gsoc2013-evolution-2088dd34013562ec6c051d2b7524e9167bd89a57.tar.zst gsoc2013-evolution-2088dd34013562ec6c051d2b7524e9167bd89a57.zip |
set the mime type to "mime/message". --- THIS IS NOT THE CONTENT TYPE ---
2000-02-09 bertrand <Bertrand.Guiheneuf@aful.org>
* camel/camel-mime-message.c (camel_mime_message_init):
set the mime type to "mime/message".
--- THIS IS NOT THE CONTENT TYPE ---
* camel/camel-mime-body-part.c (camel_mime_body_part_init):
set the mime type to "body-part".
--- THIS IS NOT THE CONTENT TYPE ---
* camel/camel-data-wrapper.c (camel_data_wrapper_set_mime_type):
mime_type is const.
(_set_input_stream): really set the input stream
(_set_output_stream): really set the output stream
various other typo fixes.
* tests/ui-tests/message-browser.c: various typo
fixes in the ctree construction.
svn path=/trunk/; revision=1712
Diffstat (limited to 'camel/camel-mime-body-part.c')
-rw-r--r-- | camel/camel-mime-body-part.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/camel/camel-mime-body-part.c b/camel/camel-mime-body-part.c index 77d245349b..3f3c2cb4a2 100644 --- a/camel/camel-mime-body-part.c +++ b/camel/camel-mime-body-part.c @@ -55,6 +55,7 @@ static void camel_mime_body_part_init (gpointer object, gpointer klass) { CamelMimeBodyPart *camel_mime_body_part = CAMEL_MIME_BODY_PART (object); + camel_data_wrapper_set_mime_type (CAMEL_DATA_WRAPPER (object), "mime/body-part"); } @@ -91,6 +92,7 @@ camel_mime_body_part_new () CAMEL_LOG_FULL_DEBUG ("CamelMimeBodyPart:: Entering new()\n"); mime_body_part = (CamelMimeBodyPart *)gtk_type_new (CAMEL_MIME_BODY_PART_TYPE); + CAMEL_LOG_FULL_DEBUG ("CamelMimeBodyPart:: Leaving new()\n"); return mime_body_part; } |