aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-charset-map.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2001-07-20 12:59:46 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-07-20 12:59:46 +0800
commitf1738a4b78c2801519e255796029ef8ec22c2791 (patch)
tree15f4106798c44d13eac40caa5af85521d3a326fc /camel/camel-charset-map.c
parent8a7c9cba6c70d7bef728c3c88d8e733b562e8e60 (diff)
downloadgsoc2013-evolution-f1738a4b78c2801519e255796029ef8ec22c2791.tar
gsoc2013-evolution-f1738a4b78c2801519e255796029ef8ec22c2791.tar.gz
gsoc2013-evolution-f1738a4b78c2801519e255796029ef8ec22c2791.tar.bz2
gsoc2013-evolution-f1738a4b78c2801519e255796029ef8ec22c2791.tar.lz
gsoc2013-evolution-f1738a4b78c2801519e255796029ef8ec22c2791.tar.xz
gsoc2013-evolution-f1738a4b78c2801519e255796029ef8ec22c2791.tar.zst
gsoc2013-evolution-f1738a4b78c2801519e255796029ef8ec22c2791.zip
renamed to camel_charset_to_iconv() to make it just a little more
2001-07-20 Not Zed <NotZed@Ximian.com> * camel-charset-map.c (camel_charset_get_iconv_friendly_name): renamed to camel_charset_to_iconv() to make it just a little more svn path=/trunk/; revision=11254
Diffstat (limited to 'camel/camel-charset-map.c')
-rw-r--r--camel/camel-charset-map.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/camel/camel-charset-map.c b/camel/camel-charset-map.c
index c007658553..5ad5a249af 100644
--- a/camel/camel-charset-map.c
+++ b/camel/camel-charset-map.c
@@ -228,7 +228,7 @@ struct {
{ "iso8859-1", "iso-8859-1" },
/* the above mostly serves as an example for iso-style charsets,
but we have code that will populate the iso-*'s if/when they
- show up in camel_charset_map_get_iconv_friendly_name() so I'm
+ show up in camel_charset_map_to_iconv() so I'm
not going to bother putting them all in here... */
{ "windows-cp1251", "cp1251" },
{ "windows-1251", "cp1251" },
@@ -386,7 +386,7 @@ camel_charset_locale_name (void)
}
const char *
-camel_charset_get_iconv_friendly_name (const char *name)
+camel_charset_to_iconv (const char *name)
{
const char *charset;
@@ -415,7 +415,7 @@ camel_charset_get_iconv_friendly_name (const char *name)
}
ICONV_CHARSETS_UNLOCK ();
- g_warning ("camel_charset_get_iconv_friendly_name (\"%s\") => \"%s\"", name, charset);
+ g_warning ("camel_charset_to_iconv (\"%s\") => \"%s\"", name, charset);
return charset;
}