diff options
Diffstat (limited to 'widgets/table/e-table-utils.c')
-rw-r--r-- | widgets/table/e-table-utils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/widgets/table/e-table-utils.c b/widgets/table/e-table-utils.c index b896ae3944..579ba25dc9 100644 --- a/widgets/table/e-table-utils.c +++ b/widgets/table/e-table-utils.c @@ -114,9 +114,9 @@ et_col_spec_to_col (ETableColumnSpecification *col_spec, g_free (title); } if (col && col_spec->compare_col != col_spec->model_col) - gtk_object_set (GTK_OBJECT (col), - "compare_col", col_spec->compare_col, - NULL); + g_object_set (col, + "compare_col", col_spec->compare_col, + NULL); return col; } |