mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-16 21:50:34 +00:00
Don't use g_slist_next in gtktextlayout.c
We generally use ->next directly.
This commit is contained in:
parent
b65668a251
commit
55bd936b73
@ -1743,7 +1743,7 @@ add_child_attrs (GtkTextLayout *layout,
|
||||
break;
|
||||
}
|
||||
|
||||
tmp_list = g_slist_next (tmp_list);
|
||||
tmp_list = tmp_list->next;
|
||||
}
|
||||
|
||||
if (tmp_list == NULL)
|
||||
|
Loading…
Reference in New Issue
Block a user