diff options
Diffstat (limited to 'sway/tree')
-rw-r--r-- | sway/tree/container.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c index 06b3b005..435d71e2 100644 --- a/sway/tree/container.c +++ b/sway/tree/container.c @@ -778,19 +778,6 @@ bool container_has_ancestor(struct sway_container *descendant, return false; } -static bool find_child_func(struct sway_container *con, void *data) { - struct sway_container *child = data; - return con == child; -} - -bool container_has_child(struct sway_container *con, - struct sway_container *child) { - if (con == NULL || con->type == C_VIEW) { - return false; - } - return container_find(con, find_child_func, child); -} - int container_count_descendants_of_type(struct sway_container *con, enum sway_container_type type) { int children = 0; |