Don't use g_slist_next in gtktextlayout.c

We generally use ->next directly.
This commit is contained in:
Matthias Clasen 2015-10-19 20:40:15 -04:00
parent b65668a251
commit 55bd936b73

View File

@ -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)