forked from AuroraMiddleware/gtk
Don't use g_list_next in gtkmain.c
We generally access ->next directly.
This commit is contained in:
parent
8422633311
commit
ea91670c11
@ -2553,7 +2553,7 @@ propagate_event_down (GtkWidget *widget,
|
||||
break;
|
||||
}
|
||||
|
||||
for (l = widgets; l && !handled_event; l = g_list_next (l))
|
||||
for (l = widgets; l && !handled_event; l = l->next)
|
||||
{
|
||||
widget = (GtkWidget *)l->data;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user