pgo: update xcursor stubs to use enum instead of char pointer

This commit is contained in:
Daniel Eklöf 2023-06-27 18:16:33 +02:00
parent 6ed5dce5ab
commit 803b250652
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -76,15 +76,15 @@ render_xcursor_is_valid(const struct seat *seat, const char *cursor)
}
bool
render_xcursor_set(struct seat *seat, struct terminal *term, const char *xcursor)
render_xcursor_set(struct seat *seat, struct terminal *term, enum cursor_shape shape)
{
return true;
}
const char *
enum cursor_shape
xcursor_for_csd_border(struct terminal *term, int x, int y)
{
return XCURSOR_LEFT_PTR;
return CURSOR_SHAPE_LEFT_PTR;
}
struct wl_window *