diff options
author | Kirill Primak <vyivel@eclair.cafe> | 2022-09-08 20:09:04 +0300 |
---|---|---|
committer | Kirill Primak <vyivel@eclair.cafe> | 2022-09-11 09:20:08 +0300 |
commit | 4cc3abb96676afaffda064ededb9c5ebe92a821f (patch) | |
tree | a54f22b8d803662ef26cc415b185ca89547cc51d /include | |
parent | ba7bbab3abf49186856c2be3c0df237bb457d890 (diff) |
xdg-foreign-v2: s/unmap/destroy
Same as the previous commit.
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_xdg_foreign_v2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/wlr/types/wlr_xdg_foreign_v2.h b/include/wlr/types/wlr_xdg_foreign_v2.h index 78659e97..b091b459 100644 --- a/include/wlr/types/wlr_xdg_foreign_v2.h +++ b/include/wlr/types/wlr_xdg_foreign_v2.h @@ -34,7 +34,7 @@ struct wlr_xdg_exported_v2 { struct wlr_xdg_foreign_exported base; struct wl_resource *resource; - struct wl_listener xdg_surface_unmap; + struct wl_listener xdg_surface_destroy; struct wl_list link; // wlr_xdg_foreign_v2.exporter.objects }; @@ -54,7 +54,7 @@ struct wlr_xdg_imported_child_v2 { struct wl_list link; // wlr_xdg_imported_v2.children - struct wl_listener xdg_surface_unmap; + struct wl_listener xdg_surface_destroy; struct wl_listener xdg_toplevel_set_parent; }; |