panel-loader: Simplify listing panels
Instead of enumerating them, putting that in a GList, then iterating the GList printing the panel names, simply print them while enumerating.
This commit is contained in:
parent
31a5d55896
commit
867a35dc89
3 changed files with 9 additions and 16 deletions
|
@ -125,15 +125,7 @@ cc_application_handle_local_options (GApplication *application,
|
|||
|
||||
if (g_variant_dict_contains (options, "list"))
|
||||
{
|
||||
g_autoptr(GList) panels = NULL;
|
||||
g_autoptr(GList) l = NULL;
|
||||
|
||||
panels = cc_panel_loader_get_panels ();
|
||||
|
||||
g_print ("%s\n", _("Available panels:"));
|
||||
for (l = panels; l != NULL; l = l->next)
|
||||
g_print ("\t%s\n", (char *) l->data);
|
||||
|
||||
cc_panel_loader_list_panels ();
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue