diff options
-rw-r--r-- | addressbook/ChangeLog | 11 | ||||
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names-table-model.c | 5 | ||||
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names.c | 8 |
3 files changed, 18 insertions, 6 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 1c76f3d75b..047a0f85bd 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,14 @@ +2001-03-28 Christopher James Lahey <clahey@ximian.com> + + * gui/component/select-names/e-select-names-table-model.c + (fill_in_info): Use E_CARD_SIMPLE_FIELD_NAME_OR_ORG instead of + getting the NAME and then the ORG. That way if we expand + NAME_OR_ORG, this will use it. + + * gui/component/select-names/e-select-names.c + (e_addressbook_create_ebook_table, SPEC): Use the correct column + in the SPEC. + 2001-03-25 Jon Trowbridge <trow@ximian.com> * gui/component/select-names/e-select-names-completion.c 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 7b0e27195b..be1f95cc98 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 @@ -120,10 +120,7 @@ fill_in_info (ESelectNamesTableModel *model) if (card) { ECardSimple *simple = e_card_simple_new(card); - model->data[i].name = e_card_simple_get(simple, E_CARD_SIMPLE_FIELD_FULL_NAME); - if ((model->data[i].name == 0) || *model->data[i].name == 0) { - model->data[i].name = e_card_simple_get(simple, E_CARD_SIMPLE_FIELD_ORG); - } + model->data[i].name = e_card_simple_get(simple, E_CARD_SIMPLE_FIELD_NAME_OR_ORG); if (model->data[i].name == 0) model->data[i].name = g_strdup(""); model->data[i].email = e_card_simple_get(simple, E_CARD_SIMPLE_FIELD_EMAIL); diff --git a/addressbook/gui/component/select-names/e-select-names.c b/addressbook/gui/component/select-names/e-select-names.c index 8b35349786..bb00fef6e7 100644 --- a/addressbook/gui/component/select-names/e-select-names.c +++ b/addressbook/gui/component/select-names/e-select-names.c @@ -26,6 +26,7 @@ #include <addressbook/gui/widgets/e-addressbook-model.h> #include <addressbook/gui/component/e-cardlist-model.h> #include <addressbook/backend/ebook/e-book.h> +#include <addressbook/backend/ebook/e-card-simple.h> #include "e-select-names-table-model.h" #include <shell/evolution-shell-client.h> #include <addressbook/gui/component/addressbook-component.h> @@ -92,7 +93,7 @@ e_select_names_class_init (ESelectNamesClass *klass) } #define SPEC "<ETableSpecification no-headers=\"true\" cursor-mode=\"line\"> \ - <ETableColumn model_col= \"35\" _title=\"Name\" expansion=\"1.0\" minimum_width=\"20\" resizable=\"true\" cell=\"string\" compare=\"string\"/> \ + <ETableColumn model_col= \"%d\" _title=\"Name\" expansion=\"1.0\" minimum_width=\"20\" resizable=\"true\" cell=\"string\" compare=\"string\"/> \ <ETableState> \ <column source=\"0\"/> \ <grouping> <leaf column=\"0\" ascending=\"true\"/> </grouping> \ @@ -171,6 +172,7 @@ e_addressbook_create_ebook_table(char *name, char *string1, char *string2, int n GtkWidget *table; char *filename; char *uri; + char *spec; model = e_addressbook_model_new(); gtk_object_set(GTK_OBJECT(model), @@ -186,7 +188,9 @@ e_addressbook_create_ebook_table(char *name, char *string1, char *string2, int n g_free(uri); g_free(filename); - table = e_table_scrolled_new (model, NULL, SPEC, NULL); + spec = g_strdup_printf(SPEC, E_CARD_SIMPLE_FIELD_NAME_OR_ORG); + table = e_table_scrolled_new (model, NULL, spec, NULL); + g_free(spec); gtk_object_set_data(GTK_OBJECT(table), "model", model); return table; |