rename container_finish to _container_destroy

This commit is contained in:
Tony Crisci 2018-04-03 19:32:09 -04:00
parent 481a8275c1
commit 035a88e0dc

View File

@ -77,21 +77,21 @@ struct sway_container *container_create(enum sway_container_type type) {
return c; return c;
} }
static struct sway_container *container_finish(struct sway_container *cont) { static void _container_destroy(struct sway_container *cont) {
if (cont == NULL) { if (cont == NULL) {
return NULL; return;
} }
wl_signal_emit(&cont->events.destroy, cont); wl_signal_emit(&cont->events.destroy, cont);
struct sway_container *parent = cont->parent; struct sway_container *parent = cont->parent;
if (cont->children != NULL) { if (cont->children != NULL && cont->children->length) {
// remove children until there are no more, container_destroy calls // remove children until there are no more, container_destroy calls
// container_remove_child, which removes child from this container // container_remove_child, which removes child from this container
while (cont->children != NULL && cont->children->length != 0) { while (cont->children != NULL) {
struct sway_container *child = cont->children->items[0]; struct sway_container *child = cont->children->items[0];
container_remove_child(child); container_remove_child(child);
container_finish(child); _container_destroy(child);
} }
} }
if (cont->marks) { if (cont->marks) {
@ -107,7 +107,6 @@ static struct sway_container *container_finish(struct sway_container *cont) {
list_free(cont->children); list_free(cont->children);
cont->children = NULL; cont->children = NULL;
free(cont); free(cont);
return parent;
} }
static struct sway_container *container_output_destroy( static struct sway_container *container_output_destroy(
@ -143,7 +142,7 @@ static struct sway_container *container_output_destroy(
wl_list_remove(&output->sway_output->damage_frame.link); wl_list_remove(&output->sway_output->damage_frame.link);
wlr_log(L_DEBUG, "OUTPUT: Destroying output '%s'", output->name); wlr_log(L_DEBUG, "OUTPUT: Destroying output '%s'", output->name);
container_finish(output); _container_destroy(output);
return &root_container; return &root_container;
} }
@ -182,7 +181,7 @@ static struct sway_container *container_workspace_destroy(
} }
} }
container_finish(workspace); _container_destroy(workspace);
return parent; return parent;
} }
@ -204,14 +203,14 @@ static bool container_reap_empty(struct sway_container *con) {
break; break;
case C_CONTAINER: case C_CONTAINER:
if (con->children->length == 0) { if (con->children->length == 0) {
container_finish(con); _container_destroy(con);
return true; return true;
} else if (con->children->length == 1) { } else if (con->children->length == 1) {
struct sway_container *child = con->children->items[0]; struct sway_container *child = con->children->items[0];
if (child->type == C_CONTAINER) { if (child->type == C_CONTAINER) {
container_remove_child(child); container_remove_child(child);
container_replace_child(con, child); container_replace_child(con, child);
container_finish(con); _container_destroy(con);
return true; return true;
} }
} }
@ -252,12 +251,12 @@ struct sway_container *container_destroy(struct sway_container *con) {
container_remove_child(child); container_remove_child(child);
container_add_child(parent, child); container_add_child(parent, child);
} }
container_finish(con); _container_destroy(con);
} }
container_finish(con); _container_destroy(con);
break; break;
case C_VIEW: case C_VIEW:
container_finish(con); _container_destroy(con);
break; break;
case C_TYPES: case C_TYPES:
wlr_log(L_ERROR, "container_destroy called on an invalid " wlr_log(L_ERROR, "container_destroy called on an invalid "