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/backend | |
parent | 0fdbdc36c05fb2811a8b7bc5a69e4d104287cff7 (diff) |
docs: replace the less commonly used "::" with "."
Diffstat (limited to 'include/backend')
-rw-r--r-- | include/backend/libinput.h | 2 | ||||
-rw-r--r-- | include/backend/wayland.h | 2 | ||||
-rw-r--r-- | include/backend/x11.h | 12 |
3 files changed, 8 insertions, 8 deletions
diff --git a/include/backend/libinput.h b/include/backend/libinput.h index d469eb7c..73a52754 100644 --- a/include/backend/libinput.h +++ b/include/backend/libinput.h @@ -27,7 +27,7 @@ struct wlr_libinput_backend { struct wl_listener session_destroy; struct wl_listener session_signal; - struct wl_list devices; // wlr_libinput_device::link + struct wl_list devices; // wlr_libinput_device.link }; struct wlr_libinput_input_device { diff --git a/include/backend/wayland.h b/include/backend/wayland.h index ad04c348..a51595ec 100644 --- a/include/backend/wayland.h +++ b/include/backend/wayland.h @@ -133,7 +133,7 @@ struct wlr_wl_seat { struct wl_pointer *wl_pointer; struct wlr_wl_pointer *active_pointer; - struct wl_list pointers; // wlr_wl_pointer::link + struct wl_list pointers; // wlr_wl_pointer.link struct zwp_pointer_gesture_swipe_v1 *gesture_swipe; struct zwp_pointer_gesture_pinch_v1 *gesture_pinch; diff --git a/include/backend/x11.h b/include/backend/x11.h index f66fed2a..06834c1c 100644 --- a/include/backend/x11.h +++ b/include/backend/x11.h @@ -30,7 +30,7 @@ struct wlr_x11_backend; struct wlr_x11_output { struct wlr_output wlr_output; struct wlr_x11_backend *x11; - struct wl_list link; // wlr_x11_backend::outputs + struct wl_list link; // wlr_x11_backend.outputs xcb_window_t win; xcb_present_event_t present_event_id; @@ -38,9 +38,9 @@ struct wlr_x11_output { struct wlr_pointer pointer; struct wlr_touch touch; - struct wl_list touchpoints; // wlr_x11_touchpoint::link + struct wl_list touchpoints; // wlr_x11_touchpoint.link - struct wl_list buffers; // wlr_x11_buffer::link + struct wl_list buffers; // wlr_x11_buffer.link pixman_region32_t exposed; @@ -55,7 +55,7 @@ struct wlr_x11_output { struct wlr_x11_touchpoint { uint32_t x11_id; int wayland_id; - struct wl_list link; // wlr_x11_output::touch_points + struct wl_list link; // wlr_x11_output.touch_points }; struct wlr_x11_backend { @@ -76,7 +76,7 @@ struct wlr_x11_backend { uint32_t dri3_major_version, dri3_minor_version; size_t requested_outputs; - struct wl_list outputs; // wlr_x11_output::link + struct wl_list outputs; // wlr_x11_output.link struct wlr_keyboard keyboard; @@ -113,7 +113,7 @@ struct wlr_x11_buffer { struct wlr_x11_backend *x11; struct wlr_buffer *buffer; xcb_pixmap_t pixmap; - struct wl_list link; // wlr_x11_output::buffers + struct wl_list link; // wlr_x11_output.buffers struct wl_listener buffer_destroy; size_t n_busy; }; |