rename container_for_each_descendent

This commit is contained in:
Tony Crisci 2018-03-29 23:08:59 -04:00
parent 4c394a0e9e
commit 92c58b1e63
6 changed files with 8 additions and 8 deletions

View file

@ -131,7 +131,7 @@ struct sway_container *container_at(struct sway_container *parent,
/**
* Apply the function for each child of the container breadth first.
*/
void container_for_each(struct sway_container *container,
void container_for_each_descendent(struct sway_container *container,
void (*f)(struct sway_container *container, void *data), void *data);
#endif