Make implementation function lists static const

This requires a change to the type of `struct wlr_tablet` and
`wlr_tablet_init` signature, both of which are part of the unstable API.
This commit is contained in:
Manuel Stoeckl 2021-02-04 08:57:18 -05:00 committed by Simon Ser
parent b6dea80907
commit a290d7a78d
15 changed files with 31 additions and 31 deletions

View file

@ -16,7 +16,7 @@ struct wlr_tablet_impl {
};
void wlr_tablet_init(struct wlr_tablet *tablet,
struct wlr_tablet_impl *impl);
const struct wlr_tablet_impl *impl);
void wlr_tablet_destroy(struct wlr_tablet *tablet);
#endif

View file

@ -61,7 +61,7 @@ struct wlr_tablet_tool {
struct wlr_tablet_impl;
struct wlr_tablet {
struct wlr_tablet_impl *impl;
const struct wlr_tablet_impl *impl;
struct {
struct wl_signal axis;