mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 19:38:01 +03:00
list.c: rename free_flat_list to list_free_items_and_destroy
This commit is contained in:
parent
c8776fac42
commit
98c1e19466
12 changed files with 20 additions and 20 deletions
|
@ -24,7 +24,7 @@ static void do_reload(void *data) {
|
|||
|
||||
if (!load_main_config(config->current_config_path, true, false)) {
|
||||
wlr_log(WLR_ERROR, "Error(s) reloading config");
|
||||
free_flat_list(bar_ids);
|
||||
list_free_items_and_destroy(bar_ids);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -41,7 +41,7 @@ static void do_reload(void *data) {
|
|||
}
|
||||
}
|
||||
}
|
||||
free_flat_list(bar_ids);
|
||||
list_free_items_and_destroy(bar_ids);
|
||||
|
||||
config_update_font_height(true);
|
||||
root_for_each_container(rebuild_textures_iterator, NULL);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue