aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui
diff options
context:
space:
mode:
Diffstat (limited to 'addressbook/gui')
-rw-r--r--addressbook/gui/contact-list-editor/e-contact-list-editor.c10
1 files changed, 10 insertions, 0 deletions
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