aboutsummaryrefslogtreecommitdiff
path: root/include/rootston
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2017-11-08 09:04:33 -0500
committerTony Crisci <tony@dubstepdish.com>2017-11-08 09:04:33 -0500
commita00b7f1e9bb992734f2498e597a86f1ca29b1d59 (patch)
tree93616bfb67378d1e1da0f0fba1253e48a259e9b2 /include/rootston
parenteb3c367c63adbef67bfe76bfc57f3eba25d0c149 (diff)
rootston: remove devices from seat
Diffstat (limited to 'include/rootston')
-rw-r--r--include/rootston/keyboard.h5
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);