cursor: rename wlr_cursor_state to wlr_cursor_priv

"state" is not very meaningful. "priv" makes it clearer that the
struct contains all private state not exposed to API users.
This commit is contained in:
Simon Ser 2023-07-18 10:15:29 +02:00
parent 7791ffe058
commit 993f494267
2 changed files with 132 additions and 132 deletions

View file

@ -28,10 +28,10 @@ struct wlr_xcursor_manager;
*/
struct wlr_box;
struct wlr_cursor_state;
struct wlr_cursor_priv;
struct wlr_cursor {
struct wlr_cursor_state *state;
struct wlr_cursor_priv *priv;
double x, y;
/**