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:
John Lindgren 2026-02-23 12:25:24 -05:00 committed by Consolatis
parent 4f72e6775e
commit a2e0de7676
16 changed files with 106 additions and 106 deletions

View file

@ -84,7 +84,7 @@ idle_manager_create(struct wl_display *display)
}
void
idle_manager_notify_activity(struct wlr_seat *seat)
idle_manager_notify_activity(struct wlr_seat *wlr_seat)
{
/*
* The display destroy event might have been triggered
@ -96,5 +96,5 @@ idle_manager_notify_activity(struct wlr_seat *seat)
return;
}
wlr_idle_notifier_v1_notify_activity(manager->ext, seat);
wlr_idle_notifier_v1_notify_activity(manager->ext, wlr_seat);
}