mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-22 07:02:28 +00:00
Merge pull request #1019 from emersion/virtual-keyboard-destroy
virtual-keyboard: fix wlr_virtual_keyboard_manager_v1_destroy
This commit is contained in:
commit
41e53d1499
@ -231,6 +231,16 @@ struct wlr_virtual_keyboard_manager_v1*
|
||||
|
||||
void wlr_virtual_keyboard_manager_v1_destroy(
|
||||
struct wlr_virtual_keyboard_manager_v1 *manager) {
|
||||
wl_list_remove(&manager->display_destroy.link);
|
||||
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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user