aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-account-gui.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-10-02 02:48:24 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-10-02 02:48:24 +0800
commitf32c0383937c70a877615aa1877093a75d89c3a1 (patch)
treeb3ee7fa13c85816d240bc4832b65105e5c3ddcc6 /mail/mail-account-gui.c
parent4f785ed4ada9d90c5b1cc12f78a6b69694b1c1a5 (diff)
downloadgsoc2013-evolution-f32c0383937c70a877615aa1877093a75d89c3a1.tar
gsoc2013-evolution-f32c0383937c70a877615aa1877093a75d89c3a1.tar.gz
gsoc2013-evolution-f32c0383937c70a877615aa1877093a75d89c3a1.tar.bz2
gsoc2013-evolution-f32c0383937c70a877615aa1877093a75d89c3a1.tar.lz
gsoc2013-evolution-f32c0383937c70a877615aa1877093a75d89c3a1.tar.xz
gsoc2013-evolution-f32c0383937c70a877615aa1877093a75d89c3a1.tar.zst
gsoc2013-evolution-f32c0383937c70a877615aa1877093a75d89c3a1.zip
Use e_utf8_gtk_entry_set_text for the email address and reply-to fields.
2002-10-01 Jeffrey Stedfast <fejj@ximian.com> * 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
Diffstat (limited to 'mail/mail-account-gui.c')
-rw-r--r--mail/mail-account-gui.c4
1 files changed, 2 insertions, 2 deletions
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);