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.
This commit is contained in:
Matthias Clasen
2004-02-22 23:35:16 +00:00
committed by Matthias Clasen
parent 1786fb0568
commit e9a92e6e6e
9 changed files with 69 additions and 1 deletions

View File

@ -174,12 +174,14 @@ gdk_display_dispose (GObject *object)
if (gdk_display_get_default() == display)
gdk_display_manager_set_default_display (gdk_display_manager_get(), NULL);
G_OBJECT_CLASS (parent_class)->dispose (object);
}
static void
gdk_display_finalize (GObject *object)
{
parent_class->finalize (object);
G_OBJECT_CLASS (parent_class)->finalize (object);
}
/**