workspace: Make the code for removing windows easier to read

Repeatedly pop off the head of the list rather than iterating through
it.
This commit is contained in:
Jasper St. Pierre 2014-08-15 23:01:11 -04:00
parent 7b8ee4ee1e
commit 5f7c901727

View File

@ -246,7 +246,6 @@ workspace_free_builtin_struts (MetaWorkspace *workspace)
void
meta_workspace_remove (MetaWorkspace *workspace)
{
GList *tmp;
MetaScreen *screen;
int i;
@ -256,18 +255,13 @@ meta_workspace_remove (MetaWorkspace *workspace)
* as well, so they won't be "orphaned"
*/
tmp = workspace->windows;
while (tmp != NULL)
while (workspace->windows != NULL)
{
GList *next;
MetaWindow *window = tmp->data;
next = tmp->next;
MetaWindow *window = workspace->windows->data;
/* pop front of list we're iterating over */
meta_workspace_remove_window (workspace, window);
g_assert (window->workspace != NULL);
tmp = next;
}
g_assert (workspace->windows == NULL);