From 6172c38ef49e337fb16c8a781cb4a98fd1fda726 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Wed, 18 Nov 2015 10:22:59 -0500 Subject: [PATCH] compositor.h: Remove unused variable from weston_seat structure This variable may have been used previously when evdev.c was used however that functionality seems to have been consumed by libinput, so there is no need for this variable in the weston_seat structure anymore. Signed-off-by: Chris Michael Reviewed-by: Derek Foreman Reviewed-by: Bryce Harrington --- src/compositor.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/compositor.h b/src/compositor.h index e64f30ce..0719abda 100644 --- a/src/compositor.h +++ b/src/compositor.h @@ -561,7 +561,6 @@ struct weston_seat { void (*led_update)(struct weston_seat *ws, enum weston_led leds); - uint32_t slot_map; struct input_method *input_method; char *seat_name; };