diff options
Diffstat (limited to 'addressbook/gui/component')
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names-table-model.c | 6 |
1 files changed, 5 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 96d20b3e53..1c55c3804d 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 @@ -181,7 +181,7 @@ e_select_names_table_model_dispose (GObject *object) static int e_select_names_table_model_col_count (ETableModel *etc) { - return 2; + return 3; } /* This function returns the number of rows in our ETableModel. */ @@ -220,6 +220,10 @@ e_select_names_table_model_value_at (ETableModel *etc, int col, int row) } return e_select_names_table_model->data[row].email; break; + case 2: + /* underline column*/ + return (void*)TRUE; + break; } return ""; } |