From 644c294d6a1e226f790bcddd0df1933a050833d4 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Fri, 13 May 2011 09:56:11 +0200 Subject: Bug #619347 - Decode QP in email in Contact List Editor --- addressbook/gui/contact-list-editor/e-contact-list-editor.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'addressbook') diff --git a/addressbook/gui/contact-list-editor/e-contact-list-editor.c b/addressbook/gui/contact-list-editor/e-contact-list-editor.c index 08ddac7942..2616b84004 100644 --- a/addressbook/gui/contact-list-editor/e-contact-list-editor.c +++ b/addressbook/gui/contact-list-editor/e-contact-list-editor.c @@ -316,11 +316,21 @@ contact_list_editor_render_destination (GtkTreeViewColumn *column, EDestination *destination; const gchar *textrep; + gchar *name = NULL, *email = NULL, *tofree = NULL; gtk_tree_model_get (model, iter, 0, &destination, -1); textrep = e_destination_get_textrep (destination, TRUE); + + if (eab_parse_qp_email (textrep, &name, &email)) { + tofree = g_strdup_printf ("%s <%s>", name, email); + textrep = tofree; + g_free (name); + g_free (email); + } + g_object_set (renderer, "text", textrep, NULL); g_object_unref (destination); + g_free (tofree); } static void -- cgit v1.2.3