diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-11-08 09:04:33 -0500 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2017-11-08 09:04:33 -0500 |
commit | a00b7f1e9bb992734f2498e597a86f1ca29b1d59 (patch) | |
tree | 93616bfb67378d1e1da0f0fba1253e48a259e9b2 /include | |
parent | eb3c367c63adbef67bfe76bfc57f3eba25d0c149 (diff) |
rootston: remove devices from seat
Diffstat (limited to 'include')
-rw-r--r-- | include/rootston/keyboard.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/rootston/keyboard.h b/include/rootston/keyboard.h index e3caf8fb..4dd70a65 100644 --- a/include/rootston/keyboard.h +++ b/include/rootston/keyboard.h @@ -11,8 +11,6 @@ struct roots_keyboard { struct roots_seat *seat; struct wlr_input_device *device; struct keyboard_config *config; - struct wl_list seat_link; - // XXX temporary struct wl_list link; struct wl_listener keyboard_key; @@ -24,8 +22,7 @@ struct roots_keyboard { struct roots_keyboard *roots_keyboard_create(struct wlr_input_device *device, struct roots_input *input); -void roots_keyboard_destroy(struct wlr_input_device *device, - struct roots_input *input); +void roots_keyboard_destroy(struct roots_keyboard *keyboard); void roots_keyboard_handle_key(struct roots_keyboard *keyboard, struct wlr_event_keyboard_key *event); |