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,

View File

@ -210,16 +210,6 @@ void meta_stack_thaw (MetaStack *stack);
*/
MetaWindow * meta_stack_get_top (MetaStack *stack);
/**
* meta_stack_get_bottom:
* @stack: The stack to search
*
* Finds the window at the bottom of the stack. Since that's pretty much
* always the desktop, this isn't the most useful of functions, and nobody
* actually calls it. We should probably get rid of it.
*/
MetaWindow * meta_stack_get_bottom (MetaStack *stack);
/**
* meta_stack_get_above:
* @stack: The stack to search.