mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
pgo: update xcursor stubs to use enum instead of char pointer
This commit is contained in:
parent
6ed5dce5ab
commit
803b250652
1 changed files with 3 additions and 3 deletions
|
|
@ -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 *
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue