From 5888c96da8f76a439ca7c2d2743f0c19a7104d2c Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Thu, 1 Jul 2021 10:09:35 +0200 Subject: tablet: stop using wlr_list --- include/wlr/types/wlr_tablet_pad.h | 3 +-- include/wlr/types/wlr_tablet_tool.h | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to 'include') 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 #include #include -#include /* * 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 #include #include -#include /* * 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; }; -- cgit v1.2.3