diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-08-30 22:23:27 +1000 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-08-30 22:23:27 +1000 |
| commit | c5c16347fb70a46e06b515e54d07a132a8a99cf6 (patch) | |
| tree | af4d73785507709cae174f7a1dd8d40c723400a3 /include | |
| parent | aa801a4f9a93ec963d31dd1ca393d52f1ad2641b (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); |
