aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Simon Ser <contact@emersion.fr>2021-01-08 10:53:36 +0100
committerLibravatar Simon Ser <contact@emersion.fr>2021-01-12 11:25:34 +0100
commit1c3cfd3bac4d408b3f27cde0d4dca2ce2f77834f (patch)
treee1721c911942a01b1e6e675101270aa021500a28 /include
parentSwitch to wlr_xdg_surface_for_each_popup_surface (diff)
downloadsway-1c3cfd3bac4d408b3f27cde0d4dca2ce2f77834f.tar.gz
sway-1c3cfd3bac4d408b3f27cde0d4dca2ce2f77834f.tar.zst
sway-1c3cfd3bac4d408b3f27cde0d4dca2ce2f77834f.zip
Rename output_layer_for_each_surface_{toplevel,popup}
Swap the "surface" part for consistency with wlroots' naming.
Diffstat (limited to 'include')
-rw-r--r--include/sway/output.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sway/output.h b/include/sway/output.h
index 300fcd48..96986700 100644
--- a/include/sway/output.h
+++ b/include/sway/output.h
@@ -124,11 +124,11 @@ void output_layer_for_each_surface(struct sway_output *output,
124 struct wl_list *layer_surfaces, sway_surface_iterator_func_t iterator, 124 struct wl_list *layer_surfaces, sway_surface_iterator_func_t iterator,
125 void *user_data); 125 void *user_data);
126 126
127void output_layer_for_each_surface_toplevel(struct sway_output *output, 127void output_layer_for_each_toplevel_surface(struct sway_output *output,
128 struct wl_list *layer_surfaces, sway_surface_iterator_func_t iterator, 128 struct wl_list *layer_surfaces, sway_surface_iterator_func_t iterator,
129 void *user_data); 129 void *user_data);
130 130
131void output_layer_for_each_surface_popup(struct sway_output *output, 131void output_layer_for_each_popup_surface(struct sway_output *output,
132 struct wl_list *layer_surfaces, sway_surface_iterator_func_t iterator, 132 struct wl_list *layer_surfaces, sway_surface_iterator_func_t iterator,
133 void *user_data); 133 void *user_data);
134 134