From 175618ed1efc1ba19645cee9127055bdbd34196b Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Mon, 22 Oct 2001 22:10:27 +0000 Subject: Added a disabled field here. 2001-10-22 Christopher James Lahey * e-table-col.c, e-table-col.h, e-table-column-specification.c, e-table-column-specification.h: Added a disabled field here. * e-table-config.c, e-table-field-chooser-item.c: Pay attention to the disabled field here. * e-table-utils.c: Copy the disabled field from the column specification to the col. svn path=/trunk/; revision=13897 --- widgets/table/e-table-utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'widgets/table/e-table-utils.c') diff --git a/widgets/table/e-table-utils.c b/widgets/table/e-table-utils.c index ee4078009e..b483449aa1 100644 --- a/widgets/table/e-table-utils.c +++ b/widgets/table/e-table-utils.c @@ -75,14 +75,14 @@ et_col_spec_to_col (ETableColumnSpecification *col_spec, col_spec->model_col, gettext (col_spec->title), pixbuf, col_spec->expansion, col_spec->minimum_width, - cell, compare, col_spec->resizable, col_spec->priority); + cell, compare, col_spec->resizable, col_spec->disabled, col_spec->priority); } } if (col == NULL && col_spec->title && *col_spec->title) { col = e_table_col_new ( col_spec->model_col, gettext (col_spec->title), col_spec->expansion, col_spec->minimum_width, - cell, compare, col_spec->resizable, col_spec->priority); + cell, compare, col_spec->resizable, col_spec->disabled, col_spec->priority); } } return col; -- cgit v1.2.3