aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/layers.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/layers.h')
-rw-r--r--include/sway/layers.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/sway/layers.h b/include/sway/layers.h
index 96155eae..51878fc9 100644
--- a/include/sway/layers.h
+++ b/include/sway/layers.h
@@ -3,10 +3,10 @@
3#include <stdbool.h> 3#include <stdbool.h>
4#include <wlr/types/wlr_box.h> 4#include <wlr/types/wlr_box.h>
5#include <wlr/types/wlr_surface.h> 5#include <wlr/types/wlr_surface.h>
6#include <wlr/types/wlr_layer_shell.h> 6#include <wlr/types/wlr_layer_shell_v1.h>
7 7
8struct sway_layer_surface { 8struct sway_layer_surface {
9 struct wlr_layer_surface *layer_surface; 9 struct wlr_layer_surface_v1 *layer_surface;
10 struct wl_list link; 10 struct wl_list link;
11 11
12 struct wl_listener destroy; 12 struct wl_listener destroy;
@@ -22,7 +22,7 @@ struct sway_layer_surface {
22struct sway_output; 22struct sway_output;
23void arrange_layers(struct sway_output *output); 23void arrange_layers(struct sway_output *output);
24 24
25struct sway_layer_surface *layer_from_wlr_layer_surface( 25struct sway_layer_surface *layer_from_wlr_layer_surface_v1(
26 struct wlr_layer_surface *layer_surface); 26 struct wlr_layer_surface_v1 *layer_surface);
27 27
28#endif 28#endif