aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-preferences.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2003-02-27 02:08:52 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-02-27 02:08:52 +0800
commit36e3f76a6784b5ab0905043c0d184d09b4d358b1 (patch)
tree7ee4adc8ff7ac41b7c355c68849a5828f00606ee /mail/mail-preferences.c
parent77427e635fac3b720b7e2bb75d63401051f112db (diff)
downloadgsoc2013-evolution-36e3f76a6784b5ab0905043c0d184d09b4d358b1.tar
gsoc2013-evolution-36e3f76a6784b5ab0905043c0d184d09b4d358b1.tar.gz
gsoc2013-evolution-36e3f76a6784b5ab0905043c0d184d09b4d358b1.tar.bz2
gsoc2013-evolution-36e3f76a6784b5ab0905043c0d184d09b4d358b1.tar.lz
gsoc2013-evolution-36e3f76a6784b5ab0905043c0d184d09b4d358b1.tar.xz
gsoc2013-evolution-36e3f76a6784b5ab0905043c0d184d09b4d358b1.tar.zst
gsoc2013-evolution-36e3f76a6784b5ab0905043c0d184d09b4d358b1.zip
Reverted back to using e-iconv
2003-02-26 Jeffrey Stedfast <fejj@ximian.com> * mail-preferences.c: Reverted back to using e-iconv * mail-composer-preferences.c: Same. svn path=/trunk/; revision=20071
Diffstat (limited to 'mail/mail-preferences.c')
-rw-r--r--mail/mail-preferences.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/mail/mail-preferences.c b/mail/mail-preferences.c
index fe66fc1f19..7fc9f19e6e 100644
--- a/mail/mail-preferences.c
+++ b/mail/mail-preferences.c
@@ -30,10 +30,9 @@
#include "mail-preferences.h"
#include <gconf/gconf.h>
-#include <camel/camel-charset-map.h>
+#include <gal/util/e-iconv.h>
#include <gtkhtml/gtkhtml-properties.h>
#include "widgets/misc/e-charset-picker.h"
-
#include <bonobo/bonobo-generic-factory.h>
#include "mail-config.h"
@@ -225,7 +224,7 @@ mail_preferences_construct (MailPreferences *prefs)
prefs->charset = GTK_OPTION_MENU (glade_xml_get_widget (gui, "omenuCharset"));
buf = gconf_client_get_string (prefs->gconf, "/apps/evolution/mail/format/charset", NULL);
- menu = e_charset_picker_new (buf ? buf : camel_charset_locale_name ());
+ menu = e_charset_picker_new (buf ? buf : e_iconv_locale_charset ());
gtk_option_menu_set_menu (prefs->charset, GTK_WIDGET (menu));
option_menu_connect (prefs->charset, prefs);
g_free (buf);
@@ -372,7 +371,7 @@ mail_preferences_apply (MailPreferences *prefs)
menu = gtk_option_menu_get_menu (prefs->charset);
if (!(string = e_charset_picker_get_charset (menu)))
- string = g_strdup (camel_charset_locale_name ());
+ string = g_strdup (e_iconv_locale_charset ());
gconf_client_set_string (prefs->gconf, "/apps/evolution/mail/format/charset", string, NULL);
g_free (string);