From 55a372042f9b9cee4f5a6d609168305d49af906e Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sat, 6 Nov 2004 20:16:40 +0000 Subject: [PATCH] Add the ComboCellInfo to the list. (#157528, Carlos Garnacho Parro) 2004-11-06 Matthias Clasen * gtk/gtkcombobox.c (gtk_combo_box_cell_layout_pack_end): Add the ComboCellInfo to the list. (#157528, Carlos Garnacho Parro) --- ChangeLog | 6 ++++++ ChangeLog.pre-2-10 | 6 ++++++ ChangeLog.pre-2-6 | 6 ++++++ ChangeLog.pre-2-8 | 6 ++++++ gtk/gtkcombobox.c | 2 ++ 5 files changed, 26 insertions(+) diff --git a/ChangeLog b/ChangeLog index 3701e6918c..e26f73c014 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-11-06 Matthias Clasen + + * gtk/gtkcombobox.c (gtk_combo_box_cell_layout_pack_end): + Add the ComboCellInfo to the list. (#157528, Carlos Garnacho + Parro) + 2004-11-05 Matthias Clasen * gtk/gtkcombobox.c (gtk_combo_box_menu_button_state_changed): diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 3701e6918c..e26f73c014 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +2004-11-06 Matthias Clasen + + * gtk/gtkcombobox.c (gtk_combo_box_cell_layout_pack_end): + Add the ComboCellInfo to the list. (#157528, Carlos Garnacho + Parro) + 2004-11-05 Matthias Clasen * gtk/gtkcombobox.c (gtk_combo_box_menu_button_state_changed): diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 3701e6918c..e26f73c014 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +2004-11-06 Matthias Clasen + + * gtk/gtkcombobox.c (gtk_combo_box_cell_layout_pack_end): + Add the ComboCellInfo to the list. (#157528, Carlos Garnacho + Parro) + 2004-11-05 Matthias Clasen * gtk/gtkcombobox.c (gtk_combo_box_menu_button_state_changed): diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 3701e6918c..e26f73c014 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +2004-11-06 Matthias Clasen + + * gtk/gtkcombobox.c (gtk_combo_box_cell_layout_pack_end): + Add the ComboCellInfo to the list. (#157528, Carlos Garnacho + Parro) + 2004-11-05 Matthias Clasen * gtk/gtkcombobox.c (gtk_combo_box_menu_button_state_changed): diff --git a/gtk/gtkcombobox.c b/gtk/gtkcombobox.c index e8b7da9fe7..a244204591 100644 --- a/gtk/gtkcombobox.c +++ b/gtk/gtkcombobox.c @@ -3631,6 +3631,8 @@ gtk_combo_box_cell_layout_pack_end (GtkCellLayout *layout, info->expand = expand; info->pack = GTK_PACK_END; + combo_box->priv->cells = g_slist_append (combo_box->priv->cells, info); + if (combo_box->priv->cell_view) gtk_cell_layout_pack_end (GTK_CELL_LAYOUT (combo_box->priv->cell_view), cell, expand);