Don't trigger warnings if there are extra references to the hbox.

2005-06-23  Matthias Clasen  <mclasen@redhat.com>

	* gtk/gtkbutton.c (gtk_button_construct_child): Don't
	trigger warnings if there are extra references to the
	hbox.  (#308677, Dan Winship)
This commit is contained in:
Matthias Clasen
2005-06-23 04:24:24 +00:00
committed by Matthias Clasen
parent af1c6bb05e
commit 3be3d84b6a
4 changed files with 17 additions and 1 deletions

View File

@@ -1,5 +1,9 @@
2005-06-23 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkbutton.c (gtk_button_construct_child): Don't
trigger warnings if there are extra references to the
hbox. (#308677, Dan Winship)
* gtk/gtkfilesystemunix.c (bookmark_list_write): Use
g_file_set_contents(). (#308722, Morten Welinder)

View File

@@ -1,5 +1,9 @@
2005-06-23 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkbutton.c (gtk_button_construct_child): Don't
trigger warnings if there are extra references to the
hbox. (#308677, Dan Winship)
* gtk/gtkfilesystemunix.c (bookmark_list_write): Use
g_file_set_contents(). (#308722, Morten Welinder)

View File

@@ -1,5 +1,9 @@
2005-06-23 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkbutton.c (gtk_button_construct_child): Don't
trigger warnings if there are extra references to the
hbox. (#308677, Dan Winship)
* gtk/gtkfilesystemunix.c (bookmark_list_write): Use
g_file_set_contents(). (#308722, Morten Welinder)

View File

@@ -687,7 +687,11 @@ gtk_button_construct_child (GtkButton *button)
if (GTK_BIN (button)->child)
{
if (priv->image && !priv->image_is_stock)
image = g_object_ref (priv->image);
{
image = g_object_ref (priv->image);
if (image->parent)
gtk_container_remove (GTK_CONTAINER (image->parent), image);
}
gtk_container_remove (GTK_CONTAINER (button),
GTK_BIN (button)->child);