From 5602fb1373959fc1acef544ffd1e3e08ba8a0f77 Mon Sep 17 00:00:00 2001 From: zccrs Date: Fri, 17 Mar 2023 15:43:34 +0800 Subject: [PATCH] backend/wayland: fix undefined reference to wlr_wl_input_device_get_seat Amend b7e9ad79 to remove wlr_wl_input_device_get_seat definition. Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3611 --- include/wlr/backend/wayland.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/wlr/backend/wayland.h b/include/wlr/backend/wayland.h index a5b5e7a3..770d6a03 100644 --- a/include/wlr/backend/wayland.h +++ b/include/wlr/backend/wayland.h @@ -57,9 +57,4 @@ void wlr_wl_output_set_title(struct wlr_output *output, const char *title); */ struct wl_surface *wlr_wl_output_get_surface(struct wlr_output *output); -/** - * Returns the remote struct wl_seat for a Wayland input device. - */ -struct wl_seat *wlr_wl_input_device_get_seat(struct wlr_input_device *dev); - #endif