diff options
Diffstat (limited to 'widgets/table/e-table-utils.c')
-rw-r--r-- | widgets/table/e-table-utils.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/widgets/table/e-table-utils.c b/widgets/table/e-table-utils.c index 76427ae464..eec4fc79d5 100644 --- a/widgets/table/e-table-utils.c +++ b/widgets/table/e-table-utils.c @@ -136,8 +136,10 @@ e_table_spec_to_full_header (ETableSpecification *spec, ETableCol *col = et_col_spec_to_col ( spec->columns[column], ete, spec->domain); - if (col) + if (col) { e_table_header_add_column (nh, col, -1); + g_object_unref (col); + } } return nh; |