mirror of
https://github.com/swaywm/sway.git
synced 2025-11-13 13:29:49 -05:00
remove swayc_t typedef
This commit is contained in:
parent
874f009866
commit
83d09cf594
10 changed files with 53 additions and 47 deletions
|
|
@ -278,7 +278,7 @@ struct sway_input_manager *sway_input_manager_create(
|
|||
}
|
||||
|
||||
bool sway_input_manager_has_focus(struct sway_input_manager *input,
|
||||
swayc_t *container) {
|
||||
struct sway_container *container) {
|
||||
struct sway_seat *seat = NULL;
|
||||
wl_list_for_each(seat, &input->seats, link) {
|
||||
if (sway_seat_get_focus(seat) == container) {
|
||||
|
|
@ -290,7 +290,7 @@ bool sway_input_manager_has_focus(struct sway_input_manager *input,
|
|||
}
|
||||
|
||||
void sway_input_manager_set_focus(struct sway_input_manager *input,
|
||||
swayc_t *container) {
|
||||
struct sway_container *container) {
|
||||
struct sway_seat *seat ;
|
||||
wl_list_for_each(seat, &input->seats, link) {
|
||||
sway_seat_set_focus(seat, container);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue