mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-01 22:58:38 -04:00
ext-data-control-v1: fix types in wl_list/wl_signal comments
These refer to the wlr protocol types.
This commit is contained in:
parent
9c51424f8d
commit
709fc8fd8e
1 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue