summaryrefslogtreecommitdiffstats
path: root/include/sway/input/seat.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/input/seat.h')
-rw-r--r--include/sway/input/seat.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h
index e9f553f3..ef65810c 100644
--- a/include/sway/input/seat.h
+++ b/include/sway/input/seat.h
@@ -47,7 +47,6 @@ enum sway_seat_operation {
47struct sway_seat { 47struct sway_seat {
48 struct wlr_seat *wlr_seat; 48 struct wlr_seat *wlr_seat;
49 struct sway_cursor *cursor; 49 struct sway_cursor *cursor;
50 struct sway_input_manager *input;
51 50
52 bool has_focus; 51 bool has_focus;
53 struct wl_list focus_stack; // list of containers in focus order 52 struct wl_list focus_stack; // list of containers in focus order
@@ -89,8 +88,7 @@ struct sway_seat {
89 struct wl_list link; // input_manager::seats 88 struct wl_list link; // input_manager::seats
90}; 89};
91 90
92struct sway_seat *seat_create(struct sway_input_manager *input, 91struct sway_seat *seat_create(const char *seat_name);
93 const char *seat_name);
94 92
95void seat_destroy(struct sway_seat *seat); 93void seat_destroy(struct sway_seat *seat);
96 94