mirror of
https://github.com/labwc/labwc.git
synced 2026-03-22 05:33:57 -04:00
tree-wide: rename seat->seat to seat->wlr_seat for clarity
As we use "seat" to refer to the labwc struct, this makes it clearer at a quick glance which code is using the wlr struct instead.
This commit is contained in:
parent
4f72e6775e
commit
a2e0de7676
16 changed files with 106 additions and 106 deletions
|
|
@ -6,6 +6,6 @@ struct wl_display;
|
|||
struct wlr_seat;
|
||||
|
||||
void idle_manager_create(struct wl_display *display);
|
||||
void idle_manager_notify_activity(struct wlr_seat *seat);
|
||||
void idle_manager_notify_activity(struct wlr_seat *wlr_seat);
|
||||
|
||||
#endif /* LABWC_IDLE_H */
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ enum input_mode {
|
|||
};
|
||||
|
||||
struct seat {
|
||||
struct wlr_seat *seat;
|
||||
struct wlr_seat *wlr_seat;
|
||||
struct wlr_keyboard_group *keyboard_group;
|
||||
|
||||
struct wl_list touch_points; /* struct touch_point.link */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue