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/xwayland | |
parent | 0fdbdc36c05fb2811a8b7bc5a69e4d104287cff7 (diff) |
docs: replace the less commonly used "::" with "."
Diffstat (limited to 'include/wlr/xwayland')
-rw-r--r-- | include/wlr/xwayland/xwayland.h | 4 |
1 files changed, 2 insertions, 2 deletions
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; |