summaryrefslogtreecommitdiffstats
path: root/sway/tree/container.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/tree/container.c')
-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,
817 return false; 817 return false;
818} 818}
819 819
820static bool find_child_func(struct sway_container *con, void *data) {
821 struct sway_container *child = data;
822 return con == child;
823}
824
825bool container_has_child(struct sway_container *con,
826 struct sway_container *child) {
827 if (con == NULL || con->type == C_VIEW) {
828 return false;
829 }
830 return container_find(con, find_child_func, child);
831}
832
833int container_count_descendants_of_type(struct sway_container *con, 820int container_count_descendants_of_type(struct sway_container *con,
834 enum sway_container_type type) { 821 enum sway_container_type type) {
835 int children = 0; 822 int children = 0;