aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/tree/view.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/tree/view.h')
-rw-r--r--include/sway/tree/view.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h
index dac348ee..e071e6c9 100644
--- a/include/sway/tree/view.h
+++ b/include/sway/tree/view.h
@@ -47,7 +47,7 @@ struct sway_view_impl {
47 bool (*wants_floating)(struct sway_view *view); 47 bool (*wants_floating)(struct sway_view *view);
48 void (*for_each_surface)(struct sway_view *view, 48 void (*for_each_surface)(struct sway_view *view,
49 wlr_surface_iterator_func_t iterator, void *user_data); 49 wlr_surface_iterator_func_t iterator, void *user_data);
50 void (*for_each_popup)(struct sway_view *view, 50 void (*for_each_popup_surface)(struct sway_view *view,
51 wlr_surface_iterator_func_t iterator, void *user_data); 51 wlr_surface_iterator_func_t iterator, void *user_data);
52 bool (*is_transient_for)(struct sway_view *child, 52 bool (*is_transient_for)(struct sway_view *child,
53 struct sway_view *ancestor); 53 struct sway_view *ancestor);
@@ -297,9 +297,9 @@ void view_for_each_surface(struct sway_view *view,
297 wlr_surface_iterator_func_t iterator, void *user_data); 297 wlr_surface_iterator_func_t iterator, void *user_data);
298 298
299/** 299/**
300 * Iterate all popups recursively. 300 * Iterate all popup surfaces of a view.
301 */ 301 */
302void view_for_each_popup(struct sway_view *view, 302void view_for_each_popup_surface(struct sway_view *view,
303 wlr_surface_iterator_func_t iterator, void *user_data); 303 wlr_surface_iterator_func_t iterator, void *user_data);
304 304
305// view implementation 305// view implementation