forked from AuroraMiddleware/gtk
Don't use g_list_next in gtkcontainer.c
We generally access ->next directory.
This commit is contained in:
parent
a0379d5424
commit
b84797a2c6
@ -3383,7 +3383,7 @@ gtk_container_set_focus_chain (GtkContainer *container,
|
|||||||
G_CALLBACK (chain_widget_destroyed),
|
G_CALLBACK (chain_widget_destroyed),
|
||||||
container);
|
container);
|
||||||
|
|
||||||
tmp_list = g_list_next (tmp_list);
|
tmp_list = tmp_list->next;
|
||||||
}
|
}
|
||||||
|
|
||||||
chain = g_list_reverse (chain);
|
chain = g_list_reverse (chain);
|
||||||
@ -3464,7 +3464,7 @@ gtk_container_unset_focus_chain (GtkContainer *container)
|
|||||||
chain_widget_destroyed,
|
chain_widget_destroyed,
|
||||||
container);
|
container);
|
||||||
|
|
||||||
tmp_list = g_list_next (tmp_list);
|
tmp_list = tmp_list->next;
|
||||||
}
|
}
|
||||||
|
|
||||||
g_list_free (chain);
|
g_list_free (chain);
|
||||||
|
Loading…
Reference in New Issue
Block a user