mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-29 16:05:59 +01:00
virtual-keyboard: fix wlr_virtual_keyboard_manager_v1_destroy
This commit is contained in:
parent
8c9d0f15ce
commit
f580112dca
1 changed files with 10 additions and 0 deletions
|
@ -231,6 +231,16 @@ struct wlr_virtual_keyboard_manager_v1*
|
||||||
|
|
||||||
void wlr_virtual_keyboard_manager_v1_destroy(
|
void wlr_virtual_keyboard_manager_v1_destroy(
|
||||||
struct wlr_virtual_keyboard_manager_v1 *manager) {
|
struct wlr_virtual_keyboard_manager_v1 *manager) {
|
||||||
|
wl_list_remove(&manager->display_destroy.link);
|
||||||
wl_global_destroy(manager->global);
|
wl_global_destroy(manager->global);
|
||||||
|
struct wl_resource *resource, *resource_tmp;
|
||||||
|
wl_resource_for_each_safe(resource, resource_tmp, &manager->resources) {
|
||||||
|
wl_resource_destroy(resource);
|
||||||
|
}
|
||||||
|
struct wlr_virtual_keyboard_v1 *keyboard, *keyboard_tmp;
|
||||||
|
wl_list_for_each_safe(keyboard, keyboard_tmp, &manager->virtual_keyboards,
|
||||||
|
link) {
|
||||||
|
wl_resource_destroy(keyboard->resource);
|
||||||
|
}
|
||||||
free(manager);
|
free(manager);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue