aboutsummaryrefslogtreecommitdiff
path: root/sway/tree
diff options
context:
space:
mode:
Diffstat (limited to 'sway/tree')
-rw-r--r--sway/tree/container.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c
index aecb2ac6..cec51af4 100644
--- a/sway/tree/container.c
+++ b/sway/tree/container.c
@@ -817,19 +817,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;