diff options
author | Not Zed <NotZed@Ximian.com> | 2001-08-08 18:57:26 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-08-08 18:57:26 +0800 |
commit | e9bd546cbe64b86b61308a713b520bddba1ef247 (patch) | |
tree | b8c4b786793b68c2d76fd09eb67482907415f906 | |
parent | 8a3a5c7b9abdd77b08382b3382bc2c832204c234 (diff) | |
download | gsoc2013-evolution-e9bd546cbe64b86b61308a713b520bddba1ef247.tar.gz gsoc2013-evolution-e9bd546cbe64b86b61308a713b520bddba1ef247.tar.zst gsoc2013-evolution-e9bd546cbe64b86b61308a713b520bddba1ef247.zip |
Call the super-class destroy function when done.
2001-08-08 Not Zed <NotZed@Ximian.com>
* e-table-sort-info.c (etsi_destroy): Call the super-class destroy
function when done.
svn path=/trunk/; revision=11782
-rw-r--r-- | widgets/table/e-table-sort-info.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/widgets/table/e-table-sort-info.c b/widgets/table/e-table-sort-info.c index bc4cf16f39..32477cbf4b 100644 --- a/widgets/table/e-table-sort-info.c +++ b/widgets/table/e-table-sort-info.c @@ -43,6 +43,8 @@ etsi_destroy (GtkObject *object) g_free(etsi->groupings); if (etsi->sortings) g_free(etsi->sortings); + + GTK_OBJECT_CLASS (e_table_sort_info_parent_class)->destroy (object); } static void |