Don't use g_slist_next in gtkstock.c

We generally use ->next directly.
This commit is contained in:
Matthias Clasen 2015-10-19 20:34:58 -04:00
parent 9727a4c4bf
commit a863b06576

View File

@ -255,7 +255,7 @@ gtk_stock_list_ids (void)
{
GList *next;
next = g_list_next (ids);
next = ids->next;
if (last_id && strcmp (ids->data, last_id) == 0)
{