diff options
author | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-08-30 22:23:27 +1000 |
---|---|---|
committer | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-09-05 18:01:43 +1000 |
commit | 06d969382988e49c7308b43dd3740c8f363cb71f (patch) | |
tree | af4d73785507709cae174f7a1dd8d40c723400a3 /include | |
parent | 0df04e27b6d865baa776c3492f08b5db8f59e6ed (diff) |
Remove offset argument to container_add_sibling
I added this thinking that it might come in useful. Turns out it didn't.
Diffstat (limited to 'include')
-rw-r--r-- | include/sway/tree/container.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h index c51425c9..6efecf7c 100644 --- a/include/sway/tree/container.h +++ b/include/sway/tree/container.h @@ -279,7 +279,7 @@ void container_insert_child(struct sway_container *parent, struct sway_container *child, int i); void container_add_sibling(struct sway_container *parent, - struct sway_container *child, int offset); + struct sway_container *child); void container_detach(struct sway_container *child); |