diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_tablet_pad.h | 3 | ||||
-rw-r--r-- | include/wlr/types/wlr_tablet_tool.h | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/include/wlr/types/wlr_tablet_pad.h b/include/wlr/types/wlr_tablet_pad.h index 255fa89e..6cd1b70e 100644 --- a/include/wlr/types/wlr_tablet_pad.h +++ b/include/wlr/types/wlr_tablet_pad.h @@ -12,7 +12,6 @@ #include <stdint.h> #include <wayland-server-core.h> #include <wlr/types/wlr_input_device.h> -#include <wlr/types/wlr_list.h> /* * NOTE: the wlr tablet pad implementation does not currently support tablets @@ -37,7 +36,7 @@ struct wlr_tablet_pad { size_t strip_count; struct wl_list groups; // wlr_tablet_pad_group::link - struct wlr_list paths; // char * + struct wl_array paths; // char * void *data; }; diff --git a/include/wlr/types/wlr_tablet_tool.h b/include/wlr/types/wlr_tablet_tool.h index 9dbf6ffb..75fc1ee8 100644 --- a/include/wlr/types/wlr_tablet_tool.h +++ b/include/wlr/types/wlr_tablet_tool.h @@ -12,7 +12,6 @@ #include <stdint.h> #include <wayland-server-core.h> #include <wlr/types/wlr_input_device.h> -#include <wlr/types/wlr_list.h> /* * Copy+Paste from libinput, but this should neither use libinput, nor @@ -71,7 +70,7 @@ struct wlr_tablet { } events; char *name; - struct wlr_list paths; // char * + struct wl_array paths; // char * void *data; }; |