aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-account-editor.c
diff options
context:
space:
mode:
authorPraveen Kumar <kpraveen@novell.com>2005-07-28 14:45:06 +0800
committerPraveen Kumar <kpraveen@src.gnome.org>2005-07-28 14:45:06 +0800
commitf9d62ae9ba3b63ea104ae480204592077fdd34b2 (patch)
treed2b79ec44cd02506455e55090c09b425184a68f2 /mail/em-account-editor.c
parentc691a5fda93e842dbd533039c47d760dbe75a75d (diff)
downloadgsoc2013-evolution-f9d62ae9ba3b63ea104ae480204592077fdd34b2.tar
gsoc2013-evolution-f9d62ae9ba3b63ea104ae480204592077fdd34b2.tar.gz
gsoc2013-evolution-f9d62ae9ba3b63ea104ae480204592077fdd34b2.tar.bz2
gsoc2013-evolution-f9d62ae9ba3b63ea104ae480204592077fdd34b2.tar.lz
gsoc2013-evolution-f9d62ae9ba3b63ea104ae480204592077fdd34b2.tar.xz
gsoc2013-evolution-f9d62ae9ba3b63ea104ae480204592077fdd34b2.tar.zst
gsoc2013-evolution-f9d62ae9ba3b63ea104ae480204592077fdd34b2.zip
Update the "Full Name" text entry with the detected real name of the user.
2005-07-28 Praveen Kumar <kpraveen@novell.com> * em-account-editor.c (emae_check_complete) : Update the "Full Name" text entry with the detected real name of the user. Fixes bug 311778 svn path=/trunk/; revision=29910
Diffstat (limited to 'mail/em-account-editor.c')
-rw-r--r--mail/em-account-editor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c
index 87c01f5186..de0348ff5b 100644
--- a/mail/em-account-editor.c
+++ b/mail/em-account-editor.c
@@ -2451,7 +2451,7 @@ emae_check_complete(EConfig *ec, const char *pageid, void *data)
emae->priv->identity_set = 1;
uname = g_locale_to_utf8(g_get_real_name(), -1, NULL, NULL, NULL);
if (uname) {
- gtk_entry_set_text(emae->priv->identity_entries[0], uname);
+ gtk_entry_set_text(emae->priv->identity_entries[1], uname);
g_free(uname);
}
}