diff options
author | Connor E <38229097+c-edw@users.noreply.github.com> | 2019-01-13 14:22:49 +0000 |
---|---|---|
committer | Connor E <38229097+c-edw@users.noreply.github.com> | 2019-01-13 14:22:49 +0000 |
commit | e7fff4f5607878a016c1514a3c75ec1e2d7c41ce (patch) | |
tree | 70400d393db4b1af6c4df06db8ab6c7594053994 /include/wlr | |
parent | 8134d5b1e0b8c65f7c8b2e7ae626c1f2e5cbc9e1 (diff) |
Remove wlr_xdg_surface_send_close.
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_xdg_shell.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/include/wlr/types/wlr_xdg_shell.h b/include/wlr/types/wlr_xdg_shell.h index 1bca9ef3..14100fda 100644 --- a/include/wlr/types/wlr_xdg_shell.h +++ b/include/wlr/types/wlr_xdg_shell.h @@ -296,9 +296,14 @@ uint32_t wlr_xdg_toplevel_set_tiled(struct wlr_xdg_surface *surface, uint32_t tiled_edges); /** - * Request that this xdg surface closes. + * Request that this xdg toplevel closes. */ -void wlr_xdg_surface_send_close(struct wlr_xdg_surface *surface); +void wlr_xdg_toplevel_send_close(struct wlr_xdg_surface *surface); + +/** + * Request that this xdg popup closes. + **/ +void wlr_xdg_popup_destroy(struct wlr_xdg_surface *surface); /** * Get the geometry for this positioner based on the anchor rect, gravity, and |