diff options
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/interfaces/wlr_pointer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/wlr/interfaces/wlr_pointer.h b/include/wlr/interfaces/wlr_pointer.h index e3950017..74e0feaf 100644 --- a/include/wlr/interfaces/wlr_pointer.h +++ b/include/wlr/interfaces/wlr_pointer.h @@ -12,11 +12,11 @@ #include <wlr/types/wlr_pointer.h> struct wlr_pointer_impl { - void (*destroy)(struct wlr_pointer *pointer); + const char *name; }; void wlr_pointer_init(struct wlr_pointer *pointer, const struct wlr_pointer_impl *impl, const char *name); -void wlr_pointer_destroy(struct wlr_pointer *pointer); +void wlr_pointer_finish(struct wlr_pointer *pointer); #endif |