diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-06-21 22:58:38 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-06-21 22:58:38 +0800 |
commit | 9a8b5041b60bc5136dd21efb2e07b1cb172bce12 (patch) | |
tree | 68fd0f3fe2e3d78b3150c587ff55e96f17f47598 /addressbook | |
parent | d560acb233d4a0100d9cd52377c5dc2029d4a2b0 (diff) | |
download | gsoc2013-evolution-9a8b5041b60bc5136dd21efb2e07b1cb172bce12.tar.gz gsoc2013-evolution-9a8b5041b60bc5136dd21efb2e07b1cb172bce12.tar.zst gsoc2013-evolution-9a8b5041b60bc5136dd21efb2e07b1cb172bce12.zip |
Bug 619347 - Contact List Editor calls wrong EDestination function
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/gui/contact-list-editor/e-contact-list-editor.c | 2 |
1 files changed, 1 insertions, 1 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 865cdbbbeb..99ebfddc01 100644 --- a/addressbook/gui/contact-list-editor/e-contact-list-editor.c +++ b/addressbook/gui/contact-list-editor/e-contact-list-editor.c @@ -651,7 +651,7 @@ contact_list_editor_email_entry_updated_cb (GtkWidget *widget, entry = E_NAME_SELECTOR_ENTRY (widget); model = E_CONTACT_LIST_MODEL (editor->priv->model); - email = g_strdup (e_destination_get_address (destination)); + email = g_strdup (e_destination_get_textrep (destination, TRUE)); store = e_name_selector_entry_peek_destination_store (entry); e_destination_store_remove_destination (store, destination); gtk_entry_set_text (GTK_ENTRY (WIDGET (EMAIL_ENTRY)), ""); |