mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-11 13:10:07 +00:00
Don't iterate multiple times over some of the children.
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.
This commit is contained in:
parent
b6b532c68a
commit
d8df361813
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -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:
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user