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:
committed by
Matthias Clasen
parent
af1c6bb05e
commit
3be3d84b6a
@@ -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)
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user