aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2018-04-26 11:38:52 +0200
committerFurkan Sahin <furkan-dev@proton.me>2018-04-26 11:38:52 +0200
commit04d459b484ec106c4959765656c782814045477e (patch)
treea61a0fb433462d42b48a23fb58dd3b2a3bc778d8 /include
parentc3724d0019986fcf11ff98797f3414c876d918fd (diff)
parentb9978f60b23fb2b463da72a12f16defd6a034bab (diff)
Merge pull request #1863 from RyanDwyer/remove-workspace-layout
Remove sway_container.workspace_layout
Diffstat (limited to 'include')
-rw-r--r--include/sway/tree/container.h1
-rw-r--r--include/sway/tree/layout.h3
2 files changed, 0 insertions, 4 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
index 6efda72f..5f3afdc1 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -68,7 +68,6 @@ struct sway_container {
enum sway_container_type type;
enum sway_container_layout layout;
enum sway_container_layout prev_layout;
- enum sway_container_layout workspace_layout;
// For C_ROOT, this has no meaning
// For C_OUTPUT, this is the output position in layout coordinates
diff --git a/include/sway/tree/layout.h b/include/sway/tree/layout.h
index 49ae00e4..327134a5 100644
--- a/include/sway/tree/layout.h
+++ b/include/sway/tree/layout.h
@@ -49,9 +49,6 @@ struct sway_container *container_remove_child(struct sway_container *child);
struct sway_container *container_replace_child(struct sway_container *child,
struct sway_container *new_child);
-struct sway_container *container_set_layout(struct sway_container *container,
- enum sway_container_layout layout);
-
void container_move_to(struct sway_container* container,
struct sway_container* destination);