aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/select-names/e-select-names-table-model.c
diff options
context:
space:
mode:
authorHans Petter Jansson <hpj@ximian.com>2004-01-29 09:27:34 +0800
committerHans Petter <hansp@src.gnome.org>2004-01-29 09:27:34 +0800
commita2f5f6e0f6e930ea17c3f5491c3a7a882ab78250 (patch)
tree07f6ca6db1884a17fec4134e3ff6af05aaf86494 /addressbook/gui/component/select-names/e-select-names-table-model.c
parente2ad337fd383a267e8538acd2e5343b569f2697d (diff)
downloadgsoc2013-evolution-a2f5f6e0f6e930ea17c3f5491c3a7a882ab78250.tar
gsoc2013-evolution-a2f5f6e0f6e930ea17c3f5491c3a7a882ab78250.tar.gz
gsoc2013-evolution-a2f5f6e0f6e930ea17c3f5491c3a7a882ab78250.tar.bz2
gsoc2013-evolution-a2f5f6e0f6e930ea17c3f5491c3a7a882ab78250.tar.lz
gsoc2013-evolution-a2f5f6e0f6e930ea17c3f5491c3a7a882ab78250.tar.xz
gsoc2013-evolution-a2f5f6e0f6e930ea17c3f5491c3a7a882ab78250.tar.zst
gsoc2013-evolution-a2f5f6e0f6e930ea17c3f5491c3a7a882ab78250.zip
Get file_as instead of full_name.
2004-01-28 Hans Petter Jansson <hpj@ximian.com> * gui/component/select-names/e-select-names-table-model.c (fill_in_info): Get file_as instead of full_name. * gui/compoent/select-names/e-select-names.etspec: Show the file_as column instead of full_name. svn path=/trunk/; revision=24505
Diffstat (limited to 'addressbook/gui/component/select-names/e-select-names-table-model.c')
-rw-r--r--addressbook/gui/component/select-names/e-select-names-table-model.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names-table-model.c b/addressbook/gui/component/select-names/e-select-names-table-model.c
index aaa6936c8d..4ff3e3c41a 100644
--- a/addressbook/gui/component/select-names/e-select-names-table-model.c
+++ b/addressbook/gui/component/select-names/e-select-names-table-model.c
@@ -121,7 +121,7 @@ fill_in_info (ESelectNamesTableModel *model)
EContact *contact = dest ? eab_destination_get_contact (dest) : NULL;
if (contact) {
- model->data[i].name = e_contact_get(contact, E_CONTACT_FULL_NAME);
+ model->data[i].name = e_contact_get(contact, E_CONTACT_FILE_AS);
if (model->data[i].name == 0)
model->data[i].name = g_strdup("");
model->data[i].email = e_contact_get(contact, E_CONTACT_EMAIL_1);