More composite children.

This commit is contained in:
Matthias Clasen 2002-01-18 00:10:23 +00:00
parent 77c286304e
commit 841e8424ab
8 changed files with 18 additions and 7 deletions

View File

@ -1,6 +1,7 @@
2002-01-17 Matthias Clasen <matthiasc@poet.de>
* gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c:
* gtk/gtkinputdialog.c,
gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c:
Mark children as composite. (#66360)
* gtk/gtkwidget.c (gtk_widget_push_composite_child): Explain

View File

@ -1,6 +1,7 @@
2002-01-17 Matthias Clasen <matthiasc@poet.de>
* gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c:
* gtk/gtkinputdialog.c,
gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c:
Mark children as composite. (#66360)
* gtk/gtkwidget.c (gtk_widget_push_composite_child): Explain

View File

@ -1,6 +1,7 @@
2002-01-17 Matthias Clasen <matthiasc@poet.de>
* gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c:
* gtk/gtkinputdialog.c,
gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c:
Mark children as composite. (#66360)
* gtk/gtkwidget.c (gtk_widget_push_composite_child): Explain

View File

@ -1,6 +1,7 @@
2002-01-17 Matthias Clasen <matthiasc@poet.de>
* gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c:
* gtk/gtkinputdialog.c,
gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c:
Mark children as composite. (#66360)
* gtk/gtkwidget.c (gtk_widget_push_composite_child): Explain

View File

@ -1,6 +1,7 @@
2002-01-17 Matthias Clasen <matthiasc@poet.de>
* gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c:
* gtk/gtkinputdialog.c,
gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c:
Mark children as composite. (#66360)
* gtk/gtkwidget.c (gtk_widget_push_composite_child): Explain

View File

@ -1,6 +1,7 @@
2002-01-17 Matthias Clasen <matthiasc@poet.de>
* gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c:
* gtk/gtkinputdialog.c,
gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c:
Mark children as composite. (#66360)
* gtk/gtkwidget.c (gtk_widget_push_composite_child): Explain

View File

@ -1,6 +1,7 @@
2002-01-17 Matthias Clasen <matthiasc@poet.de>
* gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c:
* gtk/gtkinputdialog.c,
gtk/gtkcolorsel.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c:
Mark children as composite. (#66360)
* gtk/gtkwidget.c (gtk_widget_push_composite_child): Explain

View File

@ -175,6 +175,8 @@ gtk_input_dialog_init (GtkInputDialog *inputd)
GList *tmp_list;
GList *device_info;
gtk_widget_push_composite_child ();
device_info = gdk_devices_list ();
/* shell and main vbox */
@ -343,6 +345,8 @@ gtk_input_dialog_init (GtkInputDialog *inputd)
gtk_widget_grab_default (inputd->close_button);
gtk_widget_show (vbox);
gtk_widget_pop_composite_child ();
}