diff options
author | bertrand <Bertrand.Guiheneuf@inria.fr> | 1999-06-23 00:12:27 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-06-23 00:12:27 +0800 |
commit | 7f81757d52326126f88e898241dc40c1668f5164 (patch) | |
tree | ce4f1671ce7d1280f8b1a375c15bbc79bd87cad9 /camel/camel-mime-part.h | |
parent | 5deed2f193e7ab91f159f1a764b78578861044cd (diff) | |
download | gsoc2013-evolution-7f81757d52326126f88e898241dc40c1668f5164.tar gsoc2013-evolution-7f81757d52326126f88e898241dc40c1668f5164.tar.gz gsoc2013-evolution-7f81757d52326126f88e898241dc40c1668f5164.tar.bz2 gsoc2013-evolution-7f81757d52326126f88e898241dc40c1668f5164.tar.lz gsoc2013-evolution-7f81757d52326126f88e898241dc40c1668f5164.tar.xz gsoc2013-evolution-7f81757d52326126f88e898241dc40c1668f5164.tar.zst gsoc2013-evolution-7f81757d52326126f88e898241dc40c1668f5164.zip |
moved all the content-type stuff here. (camel_data_wrapper_init):
1999-06-22 bertrand <Bertrand.Guiheneuf@inria.fr>
* camel/camel-data-wrapper.c (_get_content_type):
moved all the content-type stuff here.
(camel_data_wrapper_init): initialize the instance
content-type field.
* camel/camel-mime-part.c (_parse_header_pair):
parse Content-Type stuff in header.
(_write_to_stream): write the content type stuff to
the stream.
svn path=/trunk/; revision=985
Diffstat (limited to 'camel/camel-mime-part.h')
-rw-r--r-- | camel/camel-mime-part.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/camel/camel-mime-part.h b/camel/camel-mime-part.h index 8ab5fc152c..eadf65ce68 100644 --- a/camel/camel-mime-part.h +++ b/camel/camel-mime-part.h @@ -58,7 +58,6 @@ typedef struct GString *encoding; GString *filename; GList *header_lines; - GMimeContentField *content_type_field; CamelDataWrapper *content; /* part real content */ @@ -89,8 +88,6 @@ typedef struct { GList * (*get_content_languages) (CamelMimePart *mime_part); void (*set_header_lines) (CamelMimePart *mime_part, GList *header_lines); GList * (*get_header_lines) (CamelMimePart *mime_part); - void (*set_content_type) (CamelMimePart *mime_part, GString *content_type); - GString * (*get_content_type) (CamelMimePart *mime_part); gboolean (*parse_header_pair) (CamelMimePart *mime_part, GString *header_name, GString *header_value); @@ -121,8 +118,6 @@ void camel_mime_part_set_content_languages (CamelMimePart *mime_part, GList *con GList *camel_mime_part_get_content_languages (CamelMimePart *mime_part); void camel_mime_part_set_header_lines (CamelMimePart *mime_part, GList *header_lines); GList *camel_mime_part_get_header_lines (CamelMimePart *mime_part); -void camel_mime_part_set_content_type (CamelMimePart *mime_part, GString *content_type); -static GString *camel_mime_part_get_content_type (CamelMimePart *mime_part); #ifdef __cplusplus } |