mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-02 09:01:38 -05:00
docs: replace the less commonly used "::" with "."
This commit is contained in:
parent
0fdbdc36c0
commit
a09d649439
19 changed files with 42 additions and 42 deletions
|
|
@ -22,7 +22,7 @@ struct wlr_tablet_manager_client_v2 {
|
|||
struct wl_resource *resource;
|
||||
struct wlr_tablet_manager_v2 *manager;
|
||||
|
||||
struct wl_list tablet_seats; // wlr_tablet_seat_client_v2::link
|
||||
struct wl_list tablet_seats; // wlr_tablet_seat_client_v2.link
|
||||
};
|
||||
|
||||
static void tablet_seat_destroy(struct wlr_tablet_seat_v2 *seat) {
|
||||
|
|
|
|||
|
|
@ -73,8 +73,8 @@ struct wlr_cursor_output_cursor {
|
|||
struct wlr_cursor_state {
|
||||
struct wlr_cursor cursor;
|
||||
|
||||
struct wl_list devices; // wlr_cursor_device::link
|
||||
struct wl_list output_cursors; // wlr_cursor_output_cursor::link
|
||||
struct wl_list devices; // wlr_cursor_device.link
|
||||
struct wl_list output_cursors; // wlr_cursor_output_cursor.link
|
||||
struct wlr_output_layout *layout;
|
||||
struct wlr_output *mapped_output;
|
||||
struct wlr_box mapped_box; // empty if unset
|
||||
|
|
|
|||
|
|
@ -19,13 +19,13 @@ struct keyboard_group_device {
|
|||
struct wl_listener keymap;
|
||||
struct wl_listener repeat_info;
|
||||
struct wl_listener destroy;
|
||||
struct wl_list link; // wlr_keyboard_group::devices
|
||||
struct wl_list link; // wlr_keyboard_group.devices
|
||||
};
|
||||
|
||||
struct keyboard_group_key {
|
||||
uint32_t keycode;
|
||||
size_t count;
|
||||
struct wl_list link; // wlr_keyboard_group::keys
|
||||
struct wl_list link; // wlr_keyboard_group.keys
|
||||
};
|
||||
|
||||
static void keyboard_set_leds(struct wlr_keyboard *kb, uint32_t leds) {
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ struct wlr_presentation_surface_state {
|
|||
struct wlr_presentation_surface {
|
||||
struct wlr_presentation_surface_state current, pending;
|
||||
|
||||
struct wlr_addon addon; // wlr_surface::addons
|
||||
struct wlr_addon addon; // wlr_surface.addons
|
||||
|
||||
struct wl_listener surface_commit;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ static void wlr_text_input_destroy(struct wlr_text_input_v3 *text_input) {
|
|||
wl_signal_emit_mutable(&text_input->events.destroy, text_input);
|
||||
text_input_clear_focused_surface(text_input);
|
||||
wl_list_remove(&text_input->seat_destroy.link);
|
||||
// remove from manager::text_inputs
|
||||
// remove from manager.text_inputs
|
||||
wl_list_remove(&text_input->link);
|
||||
free(text_input->current.surrounding.text);
|
||||
free(text_input->pending.surrounding.text);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue