diff options
author | Simon Ser <contact@emersion.fr> | 2021-01-08 10:53:36 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2021-01-12 11:25:34 +0100 |
commit | 1c3cfd3bac4d408b3f27cde0d4dca2ce2f77834f (patch) | |
tree | e1721c911942a01b1e6e675101270aa021500a28 /include/sway | |
parent | 5438cc158a1b9fa3bf76445a6dc986e30c5e78f6 (diff) | |
download | sway-1c3cfd3bac4d408b3f27cde0d4dca2ce2f77834f.tar.xz |
Rename output_layer_for_each_surface_{toplevel,popup}
Swap the "surface" part for consistency with wlroots' naming.
Diffstat (limited to 'include/sway')
-rw-r--r-- | include/sway/output.h | 4 |
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, struct wl_list *layer_surfaces, sway_surface_iterator_func_t iterator, void *user_data); -void output_layer_for_each_surface_toplevel(struct sway_output *output, +void output_layer_for_each_toplevel_surface(struct sway_output *output, struct wl_list *layer_surfaces, sway_surface_iterator_func_t iterator, void *user_data); -void output_layer_for_each_surface_popup(struct sway_output *output, +void output_layer_for_each_popup_surface(struct sway_output *output, struct wl_list *layer_surfaces, sway_surface_iterator_func_t iterator, void *user_data); |