summaryrefslogtreecommitdiff
path: root/gtk/gtkinvisible.c
diff options
context:
space:
mode:
authorMatthias Clasen <maclas@gmx.de>2004-02-22 23:35:16 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2004-02-22 23:35:16 +0000
commite9a92e6e6e30f483b881ab33fae1ba6e1fc088b3 (patch)
treecf01d96ecb0fa960d1a444f636cf1086013633f0 /gtk/gtkinvisible.c
parent1786fb0568e2b33604034332b4dc97737d3c2767 (diff)
downloadgdk-pixbuf-e9a92e6e6e30f483b881ab33fae1ba6e1fc088b3.tar.gz
Fix bug 134982, reported by Morten Welinder:
Mon Feb 23 00:38:21 2004 Matthias Clasen <maclas@gmx.de> Fix bug 134982, reported by Morten Welinder: * gtk/gtkpathbar.c (gtk_path_bar_destroy): * gtk/gtktooltips.c (gtk_tooltips_destroy): * gtk/gtkinvisible.c (gtk_invisible_destroy): Chain up to the parent's ::destroy handler. * gdk/gdkdisplay.c (gdk_display_dispose): Chain up to the parent's ::dispose handler.
Diffstat (limited to 'gtk/gtkinvisible.c')
-rw-r--r--gtk/gtkinvisible.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/gtkinvisible.c b/gtk/gtkinvisible.c
index a7bbae732..395438e05 100644
--- a/gtk/gtkinvisible.c
+++ b/gtk/gtkinvisible.c
@@ -146,6 +146,8 @@ gtk_invisible_destroy (GtkObject *object)
invisible->has_user_ref_count = FALSE;
g_object_unref (invisible);
}
+
+ GTK_OBJECT_CLASS (parent_class)->destroy (object);
}
/**