diff options
author | Chris Toshok <toshok@ximian.com> | 2003-03-23 17:18:04 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2003-03-23 17:18:04 +0800 |
commit | a66943ec821cda5eaef68ea8ecc07d3593dda893 (patch) | |
tree | b3a3ca21cd0256cd06ad3a391f1a9011acf23ddb /addressbook/gui/component/select-names/e-select-names-text-model.c | |
parent | 04692227019281d5ad6391f8693a437a438ae39d (diff) | |
download | gsoc2013-evolution-a66943ec821cda5eaef68ea8ecc07d3593dda893.tar gsoc2013-evolution-a66943ec821cda5eaef68ea8ecc07d3593dda893.tar.gz gsoc2013-evolution-a66943ec821cda5eaef68ea8ecc07d3593dda893.tar.bz2 gsoc2013-evolution-a66943ec821cda5eaef68ea8ecc07d3593dda893.tar.lz gsoc2013-evolution-a66943ec821cda5eaef68ea8ecc07d3593dda893.tar.xz gsoc2013-evolution-a66943ec821cda5eaef68ea8ecc07d3593dda893.tar.zst gsoc2013-evolution-a66943ec821cda5eaef68ea8ecc07d3593dda893.zip |
[ fixes bug #32113 ] add include_email arg to e_destination_get_textrep.
2003-03-23 Chris Toshok <toshok@ximian.com>
[ fixes bug #32113 ]
* backend/ebook/e-destination.h: add include_email arg to
e_destination_get_textrep.
* backend/ebook/e-destination.c (e_destination_get_textrep): add
include_email arg. if it's TRUE, and if there's an email address to
add
* gui/contact-list-editor/e-contact-list-model.c
(contact_list_value_at): use e_destination_get_textrep so we don't
display QP text, and pass TRUE for include_email.
* gui/widgets/e-minicard.c (add_field): same.
(remodel): same.
* gui/widgets/e-addressbook-treeview-adapter.c (adapter_get_value): same.
* gui/widgets/e-addressbook-table-adapter.c (addressbook_value_at): same.
* gui/component/select-names/e-select-names-text-model.c
(e_select_names_text_model_insert_length): pass FALSE for
include_email.
* gui/component/select-names/e-select-names-model.c
(e_select_names_model_get_textification): pass FALSE for
include_email.
(e_select_names_model_get_string): same.
(e_select_names_model_replace): same.
(e_select_names_model_name_pos): same.
(e_select_names_model_text_pos): same.
svn path=/trunk/; revision=20467
Diffstat (limited to 'addressbook/gui/component/select-names/e-select-names-text-model.c')
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names-text-model.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names-text-model.c b/addressbook/gui/component/select-names/e-select-names-text-model.c index 1fbc0aa7fd..269e0599a3 100644 --- a/addressbook/gui/component/select-names/e-select-names-text-model.c +++ b/addressbook/gui/component/select-names/e-select-names-text-model.c @@ -367,7 +367,7 @@ e_select_names_text_model_insert_length (ETextModel *model, gint pos, const gcha if (text[i] == *text_model->sep && index >= 0) { /* Is this a quoted or an unquoted separator we are dealing with? */ const EDestination *dest = e_select_names_model_get_destination (source, index); if (dest) { - const gchar *str = e_destination_get_textrep (dest); + const gchar *str = e_destination_get_textrep (dest, FALSE); gint j; if (out) fprintf (out, "str=%s pos=%d\n", str, pos); |