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 gtktextdisplay.c
We generally use ->next directly.
This commit is contained in:
parent
060948d806
commit
b65668a251
@ -970,7 +970,7 @@ gtk_text_layout_draw (GtkTextLayout *layout,
|
||||
cairo_translate (cr, 0, line_display->height);
|
||||
gtk_text_layout_free_line_display (layout, line_display);
|
||||
|
||||
tmp_list = g_slist_next (tmp_list);
|
||||
tmp_list = tmp_list->next;
|
||||
}
|
||||
|
||||
gtk_text_layout_wrap_loop_end (layout);
|
||||
|
Loading…
Reference in New Issue
Block a user