aboutsummaryrefslogtreecommitdiff
path: root/include/sway/tree/layout.h
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2018-03-29 14:31:10 -0400
committerTony Crisci <tony@dubstepdish.com>2018-03-29 14:31:10 -0400
commit83d09cf5945ba10a703dc5cc977a6d2814f0fd64 (patch)
treeda290b9033e91b295fd01fcf84ca4e74c9a37c1a /include/sway/tree/layout.h
parent874f009866abaf8ca43ed4cd88a69d22a3fbfc5a (diff)
remove swayc_t typedef
Diffstat (limited to 'include/sway/tree/layout.h')
-rw-r--r--include/sway/tree/layout.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/sway/tree/layout.h b/include/sway/tree/layout.h
index 39b7fb24..8bb9e075 100644
--- a/include/sway/tree/layout.h
+++ b/include/sway/tree/layout.h
@@ -34,7 +34,8 @@ void init_layout(void);
void add_child(struct sway_container *parent, struct sway_container *child);
-swayc_t *add_sibling(swayc_t *parent, swayc_t *child);
+struct sway_container *add_sibling(struct sway_container *parent,
+ struct sway_container *child);
struct sway_container *remove_child(struct sway_container *child);
@@ -45,7 +46,7 @@ void sort_workspaces(struct sway_container *output);
void arrange_windows(struct sway_container *container,
double width, double height);
-swayc_t *get_swayc_in_direction(swayc_t *container,
- struct sway_seat *seat, enum movement_direction dir);
+struct sway_container *get_swayc_in_direction(struct sway_container
+ *container, struct sway_seat *seat, enum movement_direction dir);
#endif