diff options
author | Leonardo Hernández Hernández <leohdz172@protonmail.com> | 2022-03-21 17:37:17 -0600 |
---|---|---|
committer | Kirill Primak <vyivel@eclair.cafe> | 2022-03-23 13:08:41 +0000 |
commit | 4519117a6885736b26f2d8ff1af97886d184c155 (patch) | |
tree | bed18c61f44f77412585c5be6410a21fc6c7acd3 /include | |
parent | 4cc2a03620b55113622379772c0b8890010fe7fa (diff) |
seat: take wlr_keyboard in wlr_seat_set_keyboard()
Signed-off-by: Leonardo Hernández Hernández <leohdz172@protonmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_seat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wlr/types/wlr_seat.h b/include/wlr/types/wlr_seat.h index 41f3918b..ebbcfd47 100644 --- a/include/wlr/types/wlr_seat.h +++ b/include/wlr/types/wlr_seat.h @@ -474,7 +474,7 @@ bool wlr_seat_pointer_has_grab(struct wlr_seat *seat); /** * Set this keyboard as the active keyboard for the seat. */ -void wlr_seat_set_keyboard(struct wlr_seat *seat, struct wlr_input_device *dev); +void wlr_seat_set_keyboard(struct wlr_seat *seat, struct wlr_keyboard *keyboard); /** * Get the active keyboard for the seat. |