diff options
author | bertrand <Bertrand.Guiheneuf@aful.org> | 1999-08-25 23:44:35 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-08-25 23:44:35 +0800 |
commit | 686273e70da67d8844344f0b8ccc592ca7e92f50 (patch) | |
tree | ba722c5e7437f5b50dc1ee9dfff7afa9948a448a /camel/camel-mime-part.c | |
parent | 6881fd1bf710f0ce0bd55f9975855bb23622077a (diff) | |
download | gsoc2013-evolution-686273e70da67d8844344f0b8ccc592ca7e92f50.tar.gz gsoc2013-evolution-686273e70da67d8844344f0b8ccc592ca7e92f50.tar.zst gsoc2013-evolution-686273e70da67d8844344f0b8ccc592ca7e92f50.zip |
these methods are in CamelMedium now.
1999-08-25 bertrand <Bertrand.Guiheneuf@aful.org>
* camel/camel-medium.c (_set_content_object):
(_get_content_object): these methods are
in CamelMedium now.
Going to revamp MimePart soon so that it inherits from CamelMedium.
svn path=/trunk/; revision=1141
Diffstat (limited to 'camel/camel-mime-part.c')
-rw-r--r-- | camel/camel-mime-part.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/camel/camel-mime-part.c b/camel/camel-mime-part.c index edab1636b6..1620eb771f 100644 --- a/camel/camel-mime-part.c +++ b/camel/camel-mime-part.c @@ -572,6 +572,8 @@ _get_content_object(CamelMimePart *mime_part) return mime_part->content; } + + const CamelDataWrapper * camel_mime_part_get_content_object(CamelMimePart *mime_part) { @@ -579,6 +581,8 @@ camel_mime_part_get_content_object(CamelMimePart *mime_part) } + + static void _set_content_object(CamelMimePart *mime_part, CamelDataWrapper *content) { |