libinput backend: massive renaming

- 'libinput' (backend's) to libinput_context
- 'device' (libinput_device) to libinput_dev
- 'dev' (wlr_device) to wlr_dev
- 'devices' lists tangling of libinput devices to wlr_devices
- 'devices' list of wlr_devices in backend state to wlr_device_lists
This commit is contained in:
Dominique Martinet 2017-08-13 00:50:09 +02:00
parent 08a2afdf6f
commit 5c82d2f5c3
8 changed files with 210 additions and 210 deletions

View file

@ -14,12 +14,12 @@ struct wlr_libinput_backend {
struct wlr_udev *udev;
struct wl_display *display;
struct libinput *libinput;
struct libinput *libinput_context;
struct wl_event_source *input_event;
struct wl_listener session_signal;
list_t *devices;
list_t *wlr_device_lists;
};
struct wlr_input_device_state {