From d4a1de64f1d3e2b0b9422aea110de62ffc9860c4 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Tue, 14 Aug 2001 21:37:54 +0000 Subject: [PATCH] Convert the UTF-8 account name string into a gtk-string before using it in 2001-08-14 Jeffrey Stedfast * mail-accounts.c (load_accounts): Convert the UTF-8 account name string into a gtk-string before using it in the GtkCList. svn path=/trunk/; revision=12036 --- mail/ChangeLog | 5 +++++ mail/mail-accounts.c | 9 ++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index 524557c4e0..286e3aa1e9 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2001-08-14 Jeffrey Stedfast + + * mail-accounts.c (load_accounts): Convert the UTF-8 account name + string into a gtk-string before using it in the GtkCList. + 2001-08-14 Peter Williams * mail-callbacks.c (previous_unread_msg): Make previous unread diff --git a/mail/mail-accounts.c b/mail/mail-accounts.c index f7b371a498..7a5eec6e19 100644 --- a/mail/mail-accounts.c +++ b/mail/mail-accounts.c @@ -32,6 +32,8 @@ #include #include +#include + #include "widgets/misc/e-charset-picker.h" #include "mail.h" @@ -129,16 +131,16 @@ load_accounts (MailAccountsDialog *dialog) while (node) { CamelURL *url; gchar *text[3]; - + account = node->data; if (account->source && account->source->url) url = camel_url_new (account->source->url, NULL); else url = NULL; - + text[0] = ""; - text[1] = account->name; + text[1] = e_utf8_to_gtk_string (GTK_WIDGET (dialog->mail_accounts), account->name); text[2] = g_strdup_printf ("%s%s", url && url->protocol ? url->protocol : _("None"), (i == default_account) ? _(" (default)") : ""); @@ -146,6 +148,7 @@ load_accounts (MailAccountsDialog *dialog) camel_url_free (url); gtk_clist_append (dialog->mail_accounts, text); + g_free (text[1]); g_free (text[2]); if (account->source->enabled)