Remove unused meta_stack_get_bottom

Unused since 1b3a58c951 ("...").

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3154>
This commit is contained in:
Michel Dänzer
2023-08-06 11:49:11 +02:00
committed by Marge Bot
parent 830f8fcf06
commit 16e8bb34de
2 changed files with 0 additions and 24 deletions

View File

@ -942,20 +942,6 @@ meta_stack_get_top (MetaStack *stack)
return NULL;
}
MetaWindow *
meta_stack_get_bottom (MetaStack *stack)
{
GList *link;
stack_ensure_sorted (stack);
link = g_list_last (stack->sorted);
if (link != NULL)
return link->data;
else
return NULL;
}
MetaWindow *
meta_stack_get_above (MetaStack *stack,
MetaWindow *window,