- GList *list;
- gtk_tree_store_clear(store);
- list = g_list_first(plugin_list);
- if (list == NULL)
- {
gtk_tree_store_append(store, &iter, NULL);
gtk_tree_store_set(store, &iter, PLUGIN_COLUMN_CHECK, FALSE,
PLUGIN_COLUMN_PLUGIN, NULL, -1);
- }
- else
- {
Plugin *p;
for (; list != NULL; list = list->next)
{
p = list->data;
(OK I see it was like this in the original code)
--- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/pull/629/files#r40365476
github-comments@lists.geany.org