aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/container.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/container.h')
-rw-r--r--include/sway/container.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sway/container.h b/include/sway/container.h
index f6aae7d1..09e29291 100644
--- a/include/sway/container.h
+++ b/include/sway/container.h
@@ -4,7 +4,6 @@
4#include <wlc/wlc.h> 4#include <wlc/wlc.h>
5#include <wlr/types/wlr_output.h> 5#include <wlr/types/wlr_output.h>
6#include <stdint.h> 6#include <stdint.h>
7
8#include "list.h" 7#include "list.h"
9 8
10typedef struct sway_container swayc_t; 9typedef struct sway_container swayc_t;
@@ -76,7 +75,7 @@ struct sway_container {
76 wlc_handle handle; 75 wlc_handle handle;
77 76
78 union { 77 union {
79 struct wlr_output *output; 78 struct sway_output *output;
80 } _handle; 79 } _handle;
81 80
82 /** 81 /**
@@ -186,10 +185,11 @@ enum visibility_mask {
186 VISIBLE = true 185 VISIBLE = true
187} visible; 186} visible;
188 187
188struct sway_output;
189/** 189/**
190 * Allocates a new output container. 190 * Allocates a new output container.
191 */ 191 */
192swayc_t *new_output(struct wlr_output *wlr_output); 192swayc_t *new_output(struct sway_output *sway_output);
193/** 193/**
194 * Allocates a new workspace container. 194 * Allocates a new workspace container.
195 */ 195 */