diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-01-08 14:14:52 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-01-08 14:14:52 +0800 |
commit | 47ad4c65d30a417d3dbdf7cbbff7930de4f72fa8 (patch) | |
tree | 0f5947e373ff61c08a127db14e80e20f4ca78746 | |
parent | e172402e07ff07ca2dc071cce9dfd7ce4bd0795e (diff) | |
download | gsoc2013-evolution-47ad4c65d30a417d3dbdf7cbbff7930de4f72fa8.tar.gz gsoc2013-evolution-47ad4c65d30a417d3dbdf7cbbff7930de4f72fa8.tar.zst gsoc2013-evolution-47ad4c65d30a417d3dbdf7cbbff7930de4f72fa8.zip |
use the composer's charset gconf key
svn path=/trunk/; revision=19274
-rw-r--r-- | composer/e-msg-composer-attachment-bar.c | 2 | ||||
-rw-r--r-- | composer/e-msg-composer.c | 2 |
2 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 13bd6cb495..a3da5c1527 100644 --- a/composer/e-msg-composer-attachment-bar.c +++ b/composer/e-msg-composer-attachment-bar.c @@ -726,7 +726,7 @@ get_default_charset (void) char *buf; gconf = gconf_client_get_default (); - buf = gconf_client_get_string (gconf, "/apps/evolution/mail/format/charset", NULL); + buf = gconf_client_get_string (gconf, "/apps/evolution/mail/composer/charset", NULL); charset = e_iconv_charset_name (buf); g_free (buf); diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index 27015fe623..a6546de188 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -235,7 +235,7 @@ composer_get_default_charset_setting (void) char *buf; gconf = gconf_client_get_default (); - buf = gconf_client_get_string (gconf, "/apps/evolution/mail/format/charset", NULL); + buf = gconf_client_get_string (gconf, "/apps/evolution/mail/composer/charset", NULL); charset = e_iconv_charset_name (buf); g_free (buf); |