aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/output.c
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 /sway/desktop/output.c
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 'sway/desktop/output.c')
-rw-r--r--sway/desktop/output.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index 7921d597..5edc8f96 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -243,7 +243,7 @@ void output_layer_for_each_surface(struct sway_output *output,
243 } 243 }
244} 244}
245 245
246void output_layer_for_each_surface_toplevel(struct sway_output *output, 246void output_layer_for_each_toplevel_surface(struct sway_output *output,
247 struct wl_list *layer_surfaces, sway_surface_iterator_func_t iterator, 247 struct wl_list *layer_surfaces, sway_surface_iterator_func_t iterator,
248 void *user_data) { 248 void *user_data) {
249 struct sway_layer_surface *layer_surface; 249 struct sway_layer_surface *layer_surface;
@@ -257,7 +257,7 @@ void output_layer_for_each_surface_toplevel(struct sway_output *output,
257} 257}
258 258
259 259
260void output_layer_for_each_surface_popup(struct sway_output *output, 260void output_layer_for_each_popup_surface(struct sway_output *output,
261 struct wl_list *layer_surfaces, sway_surface_iterator_func_t iterator, 261 struct wl_list *layer_surfaces, sway_surface_iterator_func_t iterator,
262 void *user_data) { 262 void *user_data) {
263 struct sway_layer_surface *layer_surface; 263 struct sway_layer_surface *layer_surface;