aboutsummaryrefslogtreecommitdiff
path: root/include/backend/x11.h
diff options
context:
space:
mode:
authorKirill Primak <vyivel@eclair.cafe>2023-10-02 22:06:44 +0300
committerKirill Primak <vyivel@eclair.cafe>2023-10-02 22:10:16 +0300
commita09d6494397bdd28a3254d2e646212afb5a3049c (patch)
tree3bf4525bd15138b48ddbef73f72cb5f0c4b45a7b /include/backend/x11.h
parent0fdbdc36c05fb2811a8b7bc5a69e4d104287cff7 (diff)
docs: replace the less commonly used "::" with "."
Diffstat (limited to 'include/backend/x11.h')
-rw-r--r--include/backend/x11.h12
1 files changed, 6 insertions, 6 deletions
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;
};