diff options
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/em-account-editor.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 0d7d81c437..35b91d7d1a 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,7 +1,14 @@ +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 + + 2005-07-27 Srinivasa Ragavan <sragavan@novell.com> * mail-config.glade: Changed "Host" to "Server" + 2005-07-27 Not Zed <NotZed@Ximian.com> * mail-send-recv.c (get_folders): hack to make it honour the 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); } } |