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.c | |
parent | 234540a383de150f0a79df466aa76dae4096d09c (diff) | |
download | gsoc2013-evolution-ef7e69f0f3fd13c783e93d49fe39918d21e52dad.tar gsoc2013-evolution-ef7e69f0f3fd13c783e93d49fe39918d21e52dad.tar.gz gsoc2013-evolution-ef7e69f0f3fd13c783e93d49fe39918d21e52dad.tar.bz2 gsoc2013-evolution-ef7e69f0f3fd13c783e93d49fe39918d21e52dad.tar.lz gsoc2013-evolution-ef7e69f0f3fd13c783e93d49fe39918d21e52dad.tar.xz 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.c')
-rw-r--r-- | camel/camel-mime-part.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-mime-part.c b/camel/camel-mime-part.c index b8e259b3e2..eb65dead4e 100644 --- a/camel/camel-mime-part.c +++ b/camel/camel-mime-part.c @@ -531,7 +531,7 @@ camel_mime_part_get_content_languages (CamelMimePart *mime_part) /* **** Content-Type: */ void -camel_mime_part_set_content_type (CamelMimePart *mime_part, gchar *content_type) +camel_mime_part_set_content_type (CamelMimePart *mime_part, const gchar *content_type) { camel_medium_set_header (CAMEL_MEDIUM (mime_part), "Content-Type", content_type); |