aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2018-04-02 22:37:21 -0400
committerLibravatar Tony Crisci <tony@dubstepdish.com>2018-04-02 22:37:21 -0400
commit2992b72d61933568476e2bf4baf573e714f9ed40 (patch)
tree0682e081d94d73ef2b4b9a7f8d1646c11bb33b8e /include
parentfix more close segfaults (diff)
downloadsway-2992b72d61933568476e2bf4baf573e714f9ed40.tar.gz
sway-2992b72d61933568476e2bf4baf573e714f9ed40.tar.zst
sway-2992b72d61933568476e2bf4baf573e714f9ed40.zip
change reap container approach
Diffstat (limited to 'include')
-rw-r--r--include/sway/tree/container.h4
-rw-r--r--include/sway/tree/layout.h4
2 files changed, 5 insertions, 3 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
index 5d15f12b..1286316a 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -128,11 +128,11 @@ struct sway_container *container_view_create(
128 struct sway_container *sibling, struct sway_view *sway_view); 128 struct sway_container *sibling, struct sway_view *sway_view);
129 129
130// TODO don't return the parent on destroy 130// TODO don't return the parent on destroy
131struct sway_container *container_destroy(struct sway_container *container); 131void container_destroy(struct sway_container *container);
132 132
133struct sway_container *container_workspace_destroy(struct sway_container *container); 133struct sway_container *container_workspace_destroy(struct sway_container *container);
134struct sway_container *container_output_destroy(struct sway_container *container); 134struct sway_container *container_output_destroy(struct sway_container *container);
135struct sway_container *container_view_destroy(struct sway_container *container); 135void container_view_destroy(struct sway_container *container);
136 136
137struct sway_container *container_close(struct sway_container *container); 137struct sway_container *container_close(struct sway_container *container);
138 138
diff --git a/include/sway/tree/layout.h b/include/sway/tree/layout.h
index 8badb244..9d33d561 100644
--- a/include/sway/tree/layout.h
+++ b/include/sway/tree/layout.h
@@ -41,7 +41,9 @@ struct sway_container *container_add_sibling(struct sway_container *parent,
41struct sway_container *container_remove_child(struct sway_container *child); 41struct sway_container *container_remove_child(struct sway_container *child);
42 42
43// TODO PRIVATE in tree.h 43// TODO PRIVATE in tree.h
44struct sway_container *container_reap_empty(struct sway_container *container); 44
45struct sway_container *container_replace_child(struct sway_container *child,
46 struct sway_container *new_child);
45 47
46// TODO move to tree.h 48// TODO move to tree.h
47void container_move_to(struct sway_container* container, 49void container_move_to(struct sway_container* container,