diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-6 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-2-8 | 5 | ||||
-rw-r--r-- | gtk/gtkcombobox.c | 6 |
5 files changed, 20 insertions, 6 deletions
@@ -1,3 +1,8 @@ +2004-07-16 Matthias Clasen <mclasen@redhat.com> + + * gtk/gtkcombobox.c (gtk_combo_box_forall): Don't iterate + multiple times over some of the children. + Thu Jul 15 22:19:40 2004 Matthias Clasen <maclas@gmx.de> Fix #60128, #58307, #144706: diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index b69057f2f9..b15ca79470 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +2004-07-16 Matthias Clasen <mclasen@redhat.com> + + * gtk/gtkcombobox.c (gtk_combo_box_forall): Don't iterate + multiple times over some of the children. + Thu Jul 15 22:19:40 2004 Matthias Clasen <maclas@gmx.de> Fix #60128, #58307, #144706: diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index b69057f2f9..b15ca79470 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +2004-07-16 Matthias Clasen <mclasen@redhat.com> + + * gtk/gtkcombobox.c (gtk_combo_box_forall): Don't iterate + multiple times over some of the children. + Thu Jul 15 22:19:40 2004 Matthias Clasen <maclas@gmx.de> Fix #60128, #58307, #144706: diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index b69057f2f9..b15ca79470 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +2004-07-16 Matthias Clasen <mclasen@redhat.com> + + * gtk/gtkcombobox.c (gtk_combo_box_forall): Don't iterate + multiple times over some of the children. + Thu Jul 15 22:19:40 2004 Matthias Clasen <maclas@gmx.de> Fix #60128, #58307, #144706: diff --git a/gtk/gtkcombobox.c b/gtk/gtkcombobox.c index a090e61291..a00b54a0bc 100644 --- a/gtk/gtkcombobox.c +++ b/gtk/gtkcombobox.c @@ -1751,12 +1751,6 @@ gtk_combo_box_forall (GtkContainer *container, { if (combo_box->priv->button) (* callback) (combo_box->priv->button, callback_data); - if (combo_box->priv->box) - (* callback) (combo_box->priv->box, callback_data); - if (combo_box->priv->separator) - (* callback) (combo_box->priv->separator, callback_data); - if (combo_box->priv->arrow) - (* callback) (combo_box->priv->arrow, callback_data); if (combo_box->priv->cell_view_frame) (* callback) (combo_box->priv->cell_view_frame, callback_data); } |