From f9d62ae9ba3b63ea104ae480204592077fdd34b2 Mon Sep 17 00:00:00 2001 From: Praveen Kumar Date: Thu, 28 Jul 2005 06:45:06 +0000 Subject: Update the "Full Name" text entry with the detected real name of the user. 2005-07-28 Praveen Kumar * 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 --- mail/em-account-editor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mail/em-account-editor.c') 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); } } -- cgit