mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-24 12:41:16 +00:00
Return TRUE if there are children. (#162134, Iñigo Serna, patch by John
2004-12-23 Matthias Clasen <mclasen@redhat.com> * gtk/gtkliststore.c (gtk_list_store_iter_children): Return TRUE if there are children. (#162134, Iñigo Serna, patch by John Finlay)
This commit is contained in:
parent
f9403b12e3
commit
6e63a0b871
@ -1,5 +1,9 @@
|
|||||||
2004-12-23 Matthias Clasen <mclasen@redhat.com>
|
2004-12-23 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtkliststore.c (gtk_list_store_iter_children):
|
||||||
|
Return TRUE if there are children. (#162134, Iñigo Serna,
|
||||||
|
patch by John Finlay)
|
||||||
|
|
||||||
* gtk/gtkcombobox.c (gtk_combo_box_button_state_changed):
|
* gtk/gtkcombobox.c (gtk_combo_box_button_state_changed):
|
||||||
Transfer state from the button to the cell view to get
|
Transfer state from the button to the cell view to get
|
||||||
prelighting right. (#156327, Ricardo Veguilla)
|
prelighting right. (#156327, Ricardo Veguilla)
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
2004-12-23 Matthias Clasen <mclasen@redhat.com>
|
2004-12-23 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtkliststore.c (gtk_list_store_iter_children):
|
||||||
|
Return TRUE if there are children. (#162134, Iñigo Serna,
|
||||||
|
patch by John Finlay)
|
||||||
|
|
||||||
* gtk/gtkcombobox.c (gtk_combo_box_button_state_changed):
|
* gtk/gtkcombobox.c (gtk_combo_box_button_state_changed):
|
||||||
Transfer state from the button to the cell view to get
|
Transfer state from the button to the cell view to get
|
||||||
prelighting right. (#156327, Ricardo Veguilla)
|
prelighting right. (#156327, Ricardo Veguilla)
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
2004-12-23 Matthias Clasen <mclasen@redhat.com>
|
2004-12-23 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtkliststore.c (gtk_list_store_iter_children):
|
||||||
|
Return TRUE if there are children. (#162134, Iñigo Serna,
|
||||||
|
patch by John Finlay)
|
||||||
|
|
||||||
* gtk/gtkcombobox.c (gtk_combo_box_button_state_changed):
|
* gtk/gtkcombobox.c (gtk_combo_box_button_state_changed):
|
||||||
Transfer state from the button to the cell view to get
|
Transfer state from the button to the cell view to get
|
||||||
prelighting right. (#156327, Ricardo Veguilla)
|
prelighting right. (#156327, Ricardo Veguilla)
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
2004-12-23 Matthias Clasen <mclasen@redhat.com>
|
2004-12-23 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtkliststore.c (gtk_list_store_iter_children):
|
||||||
|
Return TRUE if there are children. (#162134, Iñigo Serna,
|
||||||
|
patch by John Finlay)
|
||||||
|
|
||||||
* gtk/gtkcombobox.c (gtk_combo_box_button_state_changed):
|
* gtk/gtkcombobox.c (gtk_combo_box_button_state_changed):
|
||||||
Transfer state from the button to the cell view to get
|
Transfer state from the button to the cell view to get
|
||||||
prelighting right. (#156327, Ricardo Veguilla)
|
prelighting right. (#156327, Ricardo Veguilla)
|
||||||
|
@ -576,7 +576,7 @@ gtk_list_store_iter_children (GtkTreeModel *tree_model,
|
|||||||
|
|
||||||
list_store = GTK_LIST_STORE (tree_model);
|
list_store = GTK_LIST_STORE (tree_model);
|
||||||
|
|
||||||
if (_gtk_sequence_get_length (list_store->seq) == 0)
|
if (_gtk_sequence_get_length (list_store->seq) > 0)
|
||||||
{
|
{
|
||||||
iter->stamp = list_store->stamp;
|
iter->stamp = list_store->stamp;
|
||||||
iter->user_data = _gtk_sequence_get_begin_ptr (list_store->seq);
|
iter->user_data = _gtk_sequence_get_begin_ptr (list_store->seq);
|
||||||
|
Loading…
Reference in New Issue
Block a user