From 709fc8fd8eb1561afda8c7844fe0d1221b5b30fa Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Sun, 6 Apr 2025 12:06:01 +0200 Subject: [PATCH] ext-data-control-v1: fix types in wl_list/wl_signal comments These refer to the wlr protocol types. --- include/wlr/types/wlr_ext_data_control_v1.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/wlr/types/wlr_ext_data_control_v1.h b/include/wlr/types/wlr_ext_data_control_v1.h index de5ad8d52..e49dfb3f5 100644 --- a/include/wlr/types/wlr_ext_data_control_v1.h +++ b/include/wlr/types/wlr_ext_data_control_v1.h @@ -14,11 +14,11 @@ struct wlr_ext_data_control_manager_v1 { struct wl_global *global; - struct wl_list devices; // wlr_data_control_device_v1.link + struct wl_list devices; // wlr_ext_data_control_device_v1.link struct { struct wl_signal destroy; - struct wl_signal new_device; // wlr_data_control_device_v1 + struct wl_signal new_device; // wlr_ext_data_control_device_v1 } events; struct wl_listener display_destroy; @@ -27,7 +27,7 @@ struct wlr_ext_data_control_manager_v1 { struct wlr_ext_data_control_device_v1 { struct wl_resource *resource; struct wlr_ext_data_control_manager_v1 *manager; - struct wl_list link; // wlr_data_control_manager_v1.devices + struct wl_list link; // wlr_ext_data_control_manager_v1.devices struct wlr_seat *seat; struct wl_resource *selection_offer_resource; // current selection offer