diff options
author | Kirill Primak <vyivel@eclair.cafe> | 2023-10-02 22:06:44 +0300 |
---|---|---|
committer | Kirill Primak <vyivel@eclair.cafe> | 2023-10-02 22:10:16 +0300 |
commit | a09d6494397bdd28a3254d2e646212afb5a3049c (patch) | |
tree | 3bf4525bd15138b48ddbef73f72cb5f0c4b45a7b /include/wlr | |
parent | 0fdbdc36c05fb2811a8b7bc5a69e4d104287cff7 (diff) |
docs: replace the less commonly used "::" with "."
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_compositor.h | 2 | ||||
-rw-r--r-- | include/wlr/types/wlr_drm_lease_v1.h | 2 | ||||
-rw-r--r-- | include/wlr/types/wlr_output.h | 4 | ||||
-rw-r--r-- | include/wlr/types/wlr_seat.h | 2 | ||||
-rw-r--r-- | include/wlr/types/wlr_xcursor_manager.h | 2 | ||||
-rw-r--r-- | include/wlr/xwayland/xwayland.h | 4 |
6 files changed, 8 insertions, 8 deletions
diff --git a/include/wlr/types/wlr_compositor.h b/include/wlr/types/wlr_compositor.h index 4c98c474..d67ce1c3 100644 --- a/include/wlr/types/wlr_compositor.h +++ b/include/wlr/types/wlr_compositor.h @@ -102,7 +102,7 @@ struct wlr_surface_output { struct wlr_surface *surface; struct wlr_output *output; - struct wl_list link; // wlr_surface::current_outputs + struct wl_list link; // wlr_surface.current_outputs struct wl_listener bind; struct wl_listener destroy; }; diff --git a/include/wlr/types/wlr_drm_lease_v1.h b/include/wlr/types/wlr_drm_lease_v1.h index 4afa11e1..cda02a10 100644 --- a/include/wlr/types/wlr_drm_lease_v1.h +++ b/include/wlr/types/wlr_drm_lease_v1.h @@ -87,7 +87,7 @@ struct wlr_drm_lease_v1 { struct wlr_drm_lease_connector_v1 **connectors; size_t n_connectors; - struct wl_list link; // wlr_drm_lease_device_v1::leases + struct wl_list link; // wlr_drm_lease_device_v1.leases struct wl_listener destroy; diff --git a/include/wlr/types/wlr_output.h b/include/wlr/types/wlr_output.h index de7ea332..95ffc670 100644 --- a/include/wlr/types/wlr_output.h +++ b/include/wlr/types/wlr_output.h @@ -138,7 +138,7 @@ struct wlr_output { int32_t phys_width, phys_height; // mm // Note: some backends may have zero modes - struct wl_list modes; // wlr_output_mode::link + struct wl_list modes; // wlr_output_mode.link struct wlr_output_mode *current_mode; int32_t width, height; int32_t refresh; // mHz, may be zero @@ -191,7 +191,7 @@ struct wlr_output { int attach_render_locks; // number of locks forcing rendering - struct wl_list cursors; // wlr_output_cursor::link + struct wl_list cursors; // wlr_output_cursor.link struct wlr_output_cursor *hardware_cursor; struct wlr_swapchain *cursor_swapchain; struct wlr_buffer *cursor_front_buffer; diff --git a/include/wlr/types/wlr_seat.h b/include/wlr/types/wlr_seat.h index b6d55372..2a5da726 100644 --- a/include/wlr/types/wlr_seat.h +++ b/include/wlr/types/wlr_seat.h @@ -134,7 +134,7 @@ struct wlr_touch_grab_interface { void (*frame)(struct wlr_seat_touch_grab *grab); // Cancel grab void (*cancel)(struct wlr_seat_touch_grab *grab); - // Send wl_touch::cancel + // Send wl_touch.cancel void (*wl_cancel)(struct wlr_seat_touch_grab *grab, struct wlr_surface *surface); }; diff --git a/include/wlr/types/wlr_xcursor_manager.h b/include/wlr/types/wlr_xcursor_manager.h index 32636c4e..53993159 100644 --- a/include/wlr/types/wlr_xcursor_manager.h +++ b/include/wlr/types/wlr_xcursor_manager.h @@ -30,7 +30,7 @@ struct wlr_xcursor_manager_theme { struct wlr_xcursor_manager { char *name; uint32_t size; - struct wl_list scaled_themes; // wlr_xcursor_manager_theme::link + struct wl_list scaled_themes; // wlr_xcursor_manager_theme.link }; /** diff --git a/include/wlr/xwayland/xwayland.h b/include/wlr/xwayland/xwayland.h index 06ea39c1..6761eff0 100644 --- a/include/wlr/xwayland/xwayland.h +++ b/include/wlr/xwayland/xwayland.h @@ -108,9 +108,9 @@ struct wlr_xwayland_surface { pid_t pid; bool has_utf8_title; - struct wl_list children; // wlr_xwayland_surface::parent_link + struct wl_list children; // wlr_xwayland_surface.parent_link struct wlr_xwayland_surface *parent; - struct wl_list parent_link; // wlr_xwayland_surface::children + struct wl_list parent_link; // wlr_xwayland_surface.children xcb_atom_t *window_type; size_t window_type_len; |