aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2018-03-29 23:08:59 -0400
committerLibravatar Tony Crisci <tony@dubstepdish.com>2018-03-29 23:08:59 -0400
commit92c58b1e63d41d48cfb487b04a2cb105c990bc4c (patch)
tree5a925aff530c83881d754c196aa18ac2898e61c3 /include
parentaddress feedback (diff)
downloadsway-92c58b1e63d41d48cfb487b04a2cb105c990bc4c.tar.gz
sway-92c58b1e63d41d48cfb487b04a2cb105c990bc4c.tar.zst
sway-92c58b1e63d41d48cfb487b04a2cb105c990bc4c.zip
rename container_for_each_descendent
Diffstat (limited to 'include')
-rw-r--r--include/sway/tree/container.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
index 92ff2b67..16df3ee7 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -131,7 +131,7 @@ struct sway_container *container_at(struct sway_container *parent,
131/** 131/**
132 * Apply the function for each child of the container breadth first. 132 * Apply the function for each child of the container breadth first.
133 */ 133 */
134void container_for_each(struct sway_container *container, 134void container_for_each_descendent(struct sway_container *container,
135 void (*f)(struct sway_container *container, void *data), void *data); 135 void (*f)(struct sway_container *container, void *data), void *data);
136 136
137#endif 137#endif