diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-02-21 05:46:51 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-02-21 05:46:51 +0800 |
commit | 74171b6c897ef057ed7f1fdffebfa0783e55cff1 (patch) | |
tree | 5df3245a829fb540fd04e3c798145b4d8a30fd38 /composer/e-msg-composer-attachment-bar.c | |
parent | 41f1a39d589c9747c0b0517ec1e2d881c3a450f0 (diff) | |
download | gsoc2013-evolution-74171b6c897ef057ed7f1fdffebfa0783e55cff1.tar.gz gsoc2013-evolution-74171b6c897ef057ed7f1fdffebfa0783e55cff1.tar.zst gsoc2013-evolution-74171b6c897ef057ed7f1fdffebfa0783e55cff1.zip |
Same as below.
2003-02-20 Jeffrey Stedfast <fejj@ximian.com>
* e-msg-composer.c (composer_get_default_charset_setting): Same as
below.
* e-msg-composer-attachment-bar.c (get_default_charset): Use
camel_charset_canonical_name() rather than e_iconv_charset_name()
as the latter will be removed shortly.
svn path=/trunk/; revision=19979
Diffstat (limited to 'composer/e-msg-composer-attachment-bar.c')
-rw-r--r-- | composer/e-msg-composer-attachment-bar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/composer/e-msg-composer-attachment-bar.c b/composer/e-msg-composer-attachment-bar.c index a391838df3..425069fbe6 100644 --- a/composer/e-msg-composer-attachment-bar.c +++ b/composer/e-msg-composer-attachment-bar.c @@ -31,7 +31,6 @@ #include <glade/glade.h> #include <gconf/gconf.h> #include <gconf/gconf-client.h> -#include <gal/util/e-iconv.h> #include <libgnome/gnome-util.h> #include <libgnomeui/gnome-app.h> #include <libgnomeui/gnome-app-helper.h> @@ -45,6 +44,7 @@ #include "e-icon-list.h" +#include "camel/camel-charset-map.h" #include "camel/camel-data-wrapper.h" #include "camel/camel-stream-fs.h" #include "camel/camel-stream-null.h" @@ -728,7 +728,7 @@ get_default_charset (void) gconf = gconf_client_get_default (); buf = gconf_client_get_string (gconf, "/apps/evolution/mail/composer/charset", NULL); - charset = e_iconv_charset_name (buf); + charset = camel_charset_canonical_name (buf); g_free (buf); return charset; |