diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-09-02 06:28:55 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-09-02 06:28:55 +0800 |
commit | 6993fc1c571c50c9d042cc26f0fd0e049492e37c (patch) | |
tree | fe93f915bd8cd71a6da5b4639e61f50c55c67c05 /widgets/table/e-table-item.c | |
parent | 9634666fca1347da1378ebbe574cb879f3fc474e (diff) | |
download | gsoc2013-evolution-6993fc1c571c50c9d042cc26f0fd0e049492e37c.tar gsoc2013-evolution-6993fc1c571c50c9d042cc26f0fd0e049492e37c.tar.gz gsoc2013-evolution-6993fc1c571c50c9d042cc26f0fd0e049492e37c.tar.bz2 gsoc2013-evolution-6993fc1c571c50c9d042cc26f0fd0e049492e37c.tar.lz gsoc2013-evolution-6993fc1c571c50c9d042cc26f0fd0e049492e37c.tar.xz gsoc2013-evolution-6993fc1c571c50c9d042cc26f0fd0e049492e37c.tar.zst gsoc2013-evolution-6993fc1c571c50c9d042cc26f0fd0e049492e37c.zip |
Fixed a leak and a double unref.
2000-09-01 Christopher James Lahey <clahey@helixcode.com>
* e-table-item.c, e-table.c: Fixed a leak and a double unref.
svn path=/trunk/; revision=5174
Diffstat (limited to 'widgets/table/e-table-item.c')
-rw-r--r-- | widgets/table/e-table-item.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/widgets/table/e-table-item.c b/widgets/table/e-table-item.c index 35c0de5a6d..1cd37d1961 100644 --- a/widgets/table/e-table-item.c +++ b/widgets/table/e-table-item.c @@ -857,9 +857,6 @@ eti_destroy (GtkObject *object) eti_remove_table_model (eti); eti_remove_table_selection_model (eti); - if (eti->selection) - gtk_object_unref(GTK_OBJECT(eti->selection)); - if (eti->height_cache_idle_id) g_source_remove(eti->height_cache_idle_id); |