From f32c0383937c70a877615aa1877093a75d89c3a1 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Tue, 1 Oct 2002 18:48:24 +0000 Subject: Use e_utf8_gtk_entry_set_text for the email address and reply-to fields. 2002-10-01 Jeffrey Stedfast * mail-account-gui.c (mail_account_gui_new): Use e_utf8_gtk_entry_set_text for the email address and reply-to fields. Fixes bug #31555. svn path=/trunk/; revision=18285 --- mail/mail-account-gui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mail/mail-account-gui.c') diff --git a/mail/mail-account-gui.c b/mail/mail-account-gui.c index 9560b0dc42..62616eeb71 100644 --- a/mail/mail-account-gui.c +++ b/mail/mail-account-gui.c @@ -1395,9 +1395,9 @@ mail_account_gui_new (MailConfigAccount *account, MailAccountsTab *dialog) if (account->id->name) e_utf8_gtk_entry_set_text (gui->full_name, account->id->name); if (account->id->address) - gtk_entry_set_text (gui->email_address, account->id->address); + e_utf8_gtk_entry_set_text (gui->email_address, account->id->address); if (account->id->reply_to) - gtk_entry_set_text (gui->reply_to, account->id->reply_to); + e_utf8_gtk_entry_set_text (gui->reply_to, account->id->reply_to); if (account->id->organization) e_utf8_gtk_entry_set_text (gui->organization, account->id->organization); -- cgit v1.2.3