diff options
author | Simon Ser <contact@emersion.fr> | 2021-07-01 10:08:56 +0200 |
---|---|---|
committer | Simon Zeni <simon@bl4ckb0ne.ca> | 2021-07-01 10:35:39 -0400 |
commit | e6cb11d8825c740f6c50e2d04965e86281b83da9 (patch) | |
tree | a54e72a82f7e4f7fb212e0be7fe6f5aa9bffe96f /include/backend | |
parent | a6ed4ae3088fee654178dd063c77db108de890cd (diff) |
backend/libinput: stop using wlr_list internally
Diffstat (limited to 'include/backend')
-rw-r--r-- | include/backend/libinput.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/backend/libinput.h b/include/backend/libinput.h index 3e0b425c..2bfb1421 100644 --- a/include/backend/libinput.h +++ b/include/backend/libinput.h @@ -7,7 +7,6 @@ #include <wlr/backend/libinput.h> #include <wlr/interfaces/wlr_input_device.h> #include <wlr/types/wlr_input_device.h> -#include <wlr/types/wlr_list.h> struct wlr_libinput_backend { struct wlr_backend backend; @@ -22,7 +21,7 @@ struct wlr_libinput_backend { struct wl_listener session_destroy; struct wl_listener session_signal; - struct wlr_list wlr_device_lists; // list of struct wl_list + struct wl_array wlr_device_lists; // struct wl_list * }; struct wlr_libinput_input_device { |