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

@ -1,3 +1,15 @@
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.
Sat Feb 21 19:09:55 2004 Manish Singh <yosh@gimp.org>
* gtk/gtksettings.c (gtk_default_substitute): Guard the FC_HINT_STYLE

View File

@ -1,3 +1,15 @@
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.
Sat Feb 21 19:09:55 2004 Manish Singh <yosh@gimp.org>
* gtk/gtksettings.c (gtk_default_substitute): Guard the FC_HINT_STYLE

View File

@ -1,3 +1,15 @@
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.
Sat Feb 21 19:09:55 2004 Manish Singh <yosh@gimp.org>
* gtk/gtksettings.c (gtk_default_substitute): Guard the FC_HINT_STYLE

View File

@ -1,3 +1,15 @@
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.
Sat Feb 21 19:09:55 2004 Manish Singh <yosh@gimp.org>
* gtk/gtksettings.c (gtk_default_substitute): Guard the FC_HINT_STYLE

View File

@ -1,3 +1,15 @@
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.
Sat Feb 21 19:09:55 2004 Manish Singh <yosh@gimp.org>
* gtk/gtksettings.c (gtk_default_substitute): Guard the FC_HINT_STYLE

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);
}
/**

View File

@ -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);
}
/**

View File

@ -106,6 +106,8 @@ gtk_path_bar_destroy (GtkObject *object)
path_bar = GTK_PATH_BAR (object);
g_free ((void *) path_bar->path);
GTK_OBJECT_CLASS (gtk_path_bar_parent_class)->destroy (object);
}
/* Size requisition:

View File

@ -206,6 +206,8 @@ gtk_tooltips_destroy (GtkObject *object)
}
gtk_tooltips_unset_tip_window (tooltips);
GTK_OBJECT_CLASS (parent_class)->destroy (object);
}
static void