diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-10-30 08:44:39 -0400 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2017-10-30 08:44:39 -0400 |
commit | 74bca7251b207aefd6103734bf068db10b0b43a5 (patch) | |
tree | ad09fe29a097b39cfc9d1e33706b4555239b2f73 /include | |
parent | fddef4d58e7d84f6fcfe0be02048ddf52ee01006 (diff) |
rename wlr_seat to seat on seat structs
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_seat.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/wlr/types/wlr_seat.h b/include/wlr/types/wlr_seat.h index b58c4066..b1872a3d 100644 --- a/include/wlr/types/wlr_seat.h +++ b/include/wlr/types/wlr_seat.h @@ -14,7 +14,7 @@ struct wlr_seat_client { struct wl_resource *wl_resource; struct wl_client *client; - struct wlr_seat *wlr_seat; + struct wlr_seat *seat; struct wl_resource *pointer; struct wl_resource *keyboard; @@ -72,7 +72,7 @@ struct wlr_seat_pointer_grab { }; struct wlr_seat_pointer_state { - struct wlr_seat *wlr_seat; + struct wlr_seat *seat; struct wlr_seat_client *focused_client; struct wlr_surface *focused_surface; @@ -89,7 +89,7 @@ struct wlr_seat_pointer_state { }; struct wlr_seat_keyboard_state { - struct wlr_seat *wlr_seat; + struct wlr_seat *seat; struct wlr_keyboard *keyboard; struct wlr_seat_client *focused_client; |