diff options
author | Tor Lillqvist <tml@novell.com> | 2006-06-14 07:30:02 +0800 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2006-06-14 07:30:02 +0800 |
commit | 53fa137f38eb9dc07ee21b89dbc2495fd0737142 (patch) | |
tree | e2fe058cfac144b05c1e17435de1ba1e7dea6bb7 /mail/em-account-editor.c | |
parent | 038d5646ce74cbd54936e6861545f9b7cdd905db (diff) | |
download | gsoc2013-evolution-53fa137f38eb9dc07ee21b89dbc2495fd0737142.tar.gz gsoc2013-evolution-53fa137f38eb9dc07ee21b89dbc2495fd0737142.tar.zst gsoc2013-evolution-53fa137f38eb9dc07ee21b89dbc2495fd0737142.zip |
g_get_real_name() returns UTF-8 on Win32.
2006-06-14 Tor Lillqvist <tml@novell.com>
* em-account-editor.c (emae_check_complete): g_get_real_name()
returns UTF-8 on Win32.
svn path=/trunk/; revision=32131
Diffstat (limited to 'mail/em-account-editor.c')
-rw-r--r-- | mail/em-account-editor.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c index ba51b4e741..1d2c07bd91 100644 --- a/mail/em-account-editor.c +++ b/mail/em-account-editor.c @@ -2539,7 +2539,11 @@ emae_check_complete(EConfig *ec, const char *pageid, void *data) char *uname; emae->priv->identity_set = 1; +#ifndef G_OS_WIN32 uname = g_locale_to_utf8(g_get_real_name(), -1, NULL, NULL, NULL); +#else + uname = g_strdup(g_get_real_name()); +#endif if (uname) { gtk_entry_set_text(emae->priv->identity_entries[1], uname); g_free(uname); |