mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
actually show the child.
Tue Sep 30 21:08:43 2003 Kristian Rietveld <kris@gtk.org> * gtk/gtkcombobox.c (gtk_combo_box_init): actually show the child. * gtk/gtkcomboboxentry.c (gtk_combo_box_entry_init): ditto. (#123543, Marco Pesenti Gritti).
This commit is contained in:
parent
fa7b750994
commit
b78ee57ea4
@ -1,3 +1,10 @@
|
||||
Tue Sep 30 21:08:43 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_init): actually show the child.
|
||||
|
||||
* gtk/gtkcomboboxentry.c (gtk_combo_box_entry_init): ditto. (#123543,
|
||||
Marco Pesenti Gritti).
|
||||
|
||||
2003-09-30 Murray Cumming <murrayc@usa.net>
|
||||
|
||||
* gtk/gtkcellrenderer.h: The render vfunc takes a GdkDrawable*
|
||||
|
@ -1,3 +1,10 @@
|
||||
Tue Sep 30 21:08:43 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_init): actually show the child.
|
||||
|
||||
* gtk/gtkcomboboxentry.c (gtk_combo_box_entry_init): ditto. (#123543,
|
||||
Marco Pesenti Gritti).
|
||||
|
||||
2003-09-30 Murray Cumming <murrayc@usa.net>
|
||||
|
||||
* gtk/gtkcellrenderer.h: The render vfunc takes a GdkDrawable*
|
||||
|
@ -1,3 +1,10 @@
|
||||
Tue Sep 30 21:08:43 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_init): actually show the child.
|
||||
|
||||
* gtk/gtkcomboboxentry.c (gtk_combo_box_entry_init): ditto. (#123543,
|
||||
Marco Pesenti Gritti).
|
||||
|
||||
2003-09-30 Murray Cumming <murrayc@usa.net>
|
||||
|
||||
* gtk/gtkcellrenderer.h: The render vfunc takes a GdkDrawable*
|
||||
|
@ -1,3 +1,10 @@
|
||||
Tue Sep 30 21:08:43 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_init): actually show the child.
|
||||
|
||||
* gtk/gtkcomboboxentry.c (gtk_combo_box_entry_init): ditto. (#123543,
|
||||
Marco Pesenti Gritti).
|
||||
|
||||
2003-09-30 Murray Cumming <murrayc@usa.net>
|
||||
|
||||
* gtk/gtkcellrenderer.h: The render vfunc takes a GdkDrawable*
|
||||
|
@ -1,3 +1,10 @@
|
||||
Tue Sep 30 21:08:43 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_init): actually show the child.
|
||||
|
||||
* gtk/gtkcomboboxentry.c (gtk_combo_box_entry_init): ditto. (#123543,
|
||||
Marco Pesenti Gritti).
|
||||
|
||||
2003-09-30 Murray Cumming <murrayc@usa.net>
|
||||
|
||||
* gtk/gtkcellrenderer.h: The render vfunc takes a GdkDrawable*
|
||||
|
@ -358,6 +358,7 @@ gtk_combo_box_init (GtkComboBox *combo_box)
|
||||
|
||||
combo_box->priv->cell_view = gtk_cell_view_new ();
|
||||
gtk_container_add (GTK_CONTAINER (combo_box), combo_box->priv->cell_view);
|
||||
gtk_widget_show (combo_box->priv->cell_view);
|
||||
|
||||
combo_box->priv->measurer = gtk_cell_view_new ();
|
||||
|
||||
|
@ -152,6 +152,7 @@ gtk_combo_box_entry_new (GtkTreeModel *model,
|
||||
GTK_COMBO_BOX_ENTRY (ret)->priv->entry = gtk_entry_new ();
|
||||
gtk_container_add (GTK_CONTAINER (ret),
|
||||
GTK_COMBO_BOX_ENTRY (ret)->priv->entry);
|
||||
gtk_widget_show (GTK_COMBO_BOX_ENTRY (ret)->priv->entry);
|
||||
|
||||
GTK_COMBO_BOX_ENTRY (ret)->priv->text_column = text_column;
|
||||
renderer = gtk_cell_renderer_text_new ();
|
||||
|
Loading…
Reference in New Issue
Block a user