diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-05-16 17:53:16 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-05-16 17:53:16 +0800 |
commit | 93d002705cf1acecd07d670072831310df10746c (patch) | |
tree | f109ee8698c9c0ca8dcaf0b2964f4dd462b3d3b9 /widgets/table/e-table-group.c | |
parent | 0a21ae9e0897278bf48b04dd3729059e14e3ca75 (diff) | |
download | gsoc2013-evolution-93d002705cf1acecd07d670072831310df10746c.tar.gz gsoc2013-evolution-93d002705cf1acecd07d670072831310df10746c.tar.zst gsoc2013-evolution-93d002705cf1acecd07d670072831310df10746c.zip |
Removed a memory leak here.
2000-05-16 Christopher James Lahey <clahey@helixcode.com>
* e-table-group-container.c: Removed a memory leak here.
* e-table-group-leaf.c: Added a ref/sink pair.
* e-table-group.c, e-table-header-item.c: Removed some unused
code.
svn path=/trunk/; revision=3079
Diffstat (limited to 'widgets/table/e-table-group.c')
-rw-r--r-- | widgets/table/e-table-group.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/widgets/table/e-table-group.c b/widgets/table/e-table-group.c index 9544059a0c..5adc4f85b1 100644 --- a/widgets/table/e-table-group.c +++ b/widgets/table/e-table-group.c @@ -36,23 +36,6 @@ static gint etg_signals [LAST_SIGNAL] = { 0, }; static gboolean etg_get_focus (ETableGroup *etg); static void etg_destroy (GtkObject *object); -#if 0 -GnomeCanvasItem * -e_table_group_new (GnomeCanvasGroup *parent, ETableCol *ecol, - gboolean open, gboolean transparent) -{ - ETableGroup *etg; - - g_return_val_if_fail (parent != NULL, NULL); - g_return_val_if_fail (ecol != NULL, NULL); - - etg = gtk_type_new (e_table_group_get_type ()); - - e_table_group_construct (parent, etg, ecol, open, transparent); - - return GNOME_CANVAS_ITEM (etg); -} -#endif static void etg_destroy (GtkObject *object) |