diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-06-21 10:27:45 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-06-21 10:27:45 -0400 |
commit | fd91244e8356f1fded735fae8f67d15efaccf6be (patch) | |
tree | ba6f47d84f621e52056e8c32ce6a86bf8a59d60c /backend/libinput | |
parent | 53a8b4f127a370a84c81e0c91b8c6fce8b18842f (diff) |
Update everyone to use new headers
Diffstat (limited to 'backend/libinput')
-rw-r--r-- | backend/libinput/events.c | 3 | ||||
-rw-r--r-- | backend/libinput/keyboard.c | 4 | ||||
-rw-r--r-- | backend/libinput/pointer.c | 4 | ||||
-rw-r--r-- | backend/libinput/tablet_pad.c | 4 | ||||
-rw-r--r-- | backend/libinput/tablet_tool.c | 4 | ||||
-rw-r--r-- | backend/libinput/touch.c | 4 |
6 files changed, 11 insertions, 12 deletions
diff --git a/backend/libinput/events.c b/backend/libinput/events.c index 2e7cc541..1f8f51c7 100644 --- a/backend/libinput/events.c +++ b/backend/libinput/events.c @@ -2,11 +2,10 @@ #include <assert.h> #include <libinput.h> #include <wlr/session.h> -#include <wlr/types.h> #include <wlr/common/list.h> +#include <wlr/interfaces/wlr_input_device.h> #include "backend/libinput.h" #include "common/log.h" -#include "types.h" struct wlr_input_device *get_appropriate_device( enum wlr_input_device_type desired_type, diff --git a/backend/libinput/keyboard.c b/backend/libinput/keyboard.c index f94f0103..26d4309c 100644 --- a/backend/libinput/keyboard.c +++ b/backend/libinput/keyboard.c @@ -2,11 +2,11 @@ #include <assert.h> #include <libinput.h> #include <wlr/session.h> -#include <wlr/types.h> +#include <wlr/types/wlr_input_device.h> +#include <wlr/interfaces/wlr_keyboard.h> #include <wlr/common/list.h> #include "backend/libinput.h" #include "common/log.h" -#include "types.h" struct wlr_keyboard_state { struct libinput_device *device; diff --git a/backend/libinput/pointer.c b/backend/libinput/pointer.c index 0139fd60..d4d3aec0 100644 --- a/backend/libinput/pointer.c +++ b/backend/libinput/pointer.c @@ -2,11 +2,11 @@ #include <assert.h> #include <libinput.h> #include <wlr/session.h> -#include <wlr/types.h> +#include <wlr/types/wlr_input_device.h> +#include <wlr/interfaces/wlr_pointer.h> #include <wlr/common/list.h> #include "backend/libinput.h" #include "common/log.h" -#include "types.h" struct wlr_pointer *wlr_libinput_pointer_create( struct libinput_device *device) { diff --git a/backend/libinput/tablet_pad.c b/backend/libinput/tablet_pad.c index ee7c82f8..3c34b643 100644 --- a/backend/libinput/tablet_pad.c +++ b/backend/libinput/tablet_pad.c @@ -2,11 +2,11 @@ #include <assert.h> #include <libinput.h> #include <wlr/session.h> -#include <wlr/types.h> +#include <wlr/types/wlr_input_device.h> +#include <wlr/interfaces/wlr_tablet_pad.h> #include <wlr/common/list.h> #include "backend/libinput.h" #include "common/log.h" -#include "types.h" struct wlr_tablet_pad *wlr_libinput_tablet_pad_create( struct libinput_device *device) { diff --git a/backend/libinput/tablet_tool.c b/backend/libinput/tablet_tool.c index e8a3bc7d..8cf2933b 100644 --- a/backend/libinput/tablet_tool.c +++ b/backend/libinput/tablet_tool.c @@ -2,11 +2,11 @@ #include <assert.h> #include <libinput.h> #include <wlr/session.h> -#include <wlr/types.h> +#include <wlr/types/wlr_input_device.h> +#include <wlr/interfaces/wlr_tablet_tool.h> #include <wlr/common/list.h> #include "backend/libinput.h" #include "common/log.h" -#include "types.h" struct wlr_tablet_tool *wlr_libinput_tablet_tool_create( struct libinput_device *device) { diff --git a/backend/libinput/touch.c b/backend/libinput/touch.c index 02c9cfef..d0048ff0 100644 --- a/backend/libinput/touch.c +++ b/backend/libinput/touch.c @@ -2,11 +2,11 @@ #include <assert.h> #include <libinput.h> #include <wlr/session.h> -#include <wlr/types.h> +#include <wlr/types/wlr_input_device.h> +#include <wlr/interfaces/wlr_touch.h> #include <wlr/common/list.h> #include "backend/libinput.h" #include "common/log.h" -#include "types.h" struct wlr_touch *wlr_libinput_touch_create( struct libinput_device *device) { |