diff options
author | Not Zed <NotZed@Ximian.com> | 2002-11-08 14:59:12 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2002-11-08 14:59:12 +0800 |
commit | ef7e69f0f3fd13c783e93d49fe39918d21e52dad (patch) | |
tree | 2d9202e1043071d53b73f3420322864f1b1d3a0b /camel/camel-mime-part.h | |
parent | 234540a383de150f0a79df466aa76dae4096d09c (diff) | |
download | gsoc2013-evolution-ef7e69f0f3fd13c783e93d49fe39918d21e52dad.tar.gz gsoc2013-evolution-ef7e69f0f3fd13c783e93d49fe39918d21e52dad.tar.zst gsoc2013-evolution-ef7e69f0f3fd13c783e93d49fe39918d21e52dad.zip |
constify the content_type.
2002-11-07 Not Zed <NotZed@Ximian.com>
* camel-mime-part.c (camel_mime_part_set_content_type): constify
the content_type.
svn path=/trunk/; revision=18660
Diffstat (limited to 'camel/camel-mime-part.h')
-rw-r--r-- | camel/camel-mime-part.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-mime-part.h b/camel/camel-mime-part.h index e745f57a6a..c925643f24 100644 --- a/camel/camel-mime-part.h +++ b/camel/camel-mime-part.h @@ -113,7 +113,7 @@ void camel_mime_part_set_content_languages (CamelMimePart *mime_part, GList * const GList *camel_mime_part_get_content_languages (CamelMimePart *mime_part); /* FIXME: what about content-type parameters? what about major/minor parts? */ -void camel_mime_part_set_content_type (CamelMimePart *mime_part, gchar *content_type); +void camel_mime_part_set_content_type (CamelMimePart *mime_part, const gchar *content_type); CamelContentType *camel_mime_part_get_content_type (CamelMimePart *mime_part); const gchar * camel_mime_part_encoding_to_string (CamelMimePartEncodingType encoding); |