diff options
Diffstat (limited to 'widgets/table')
-rw-r--r-- | widgets/table/e-table-state.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/widgets/table/e-table-state.c b/widgets/table/e-table-state.c index 36c7293267..b36bbf41c7 100644 --- a/widgets/table/e-table-state.c +++ b/widgets/table/e-table-state.c @@ -23,9 +23,10 @@ static GtkObjectClass *etst_parent_class; static void etst_destroy (GtkObject *object) { -#if 0 ETableState *etst = E_TABLE_STATE (object); -#endif + + if (etst->columns) + g_free (etst->columns); GTK_OBJECT_CLASS (etst_parent_class)->destroy (object); } |