summaryrefslogtreecommitdiff
path: root/modules/other/gail/gailcontainercell.c
diff options
context:
space:
mode:
Diffstat (limited to 'modules/other/gail/gailcontainercell.c')
-rw-r--r--modules/other/gail/gailcontainercell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/other/gail/gailcontainercell.c b/modules/other/gail/gailcontainercell.c
index d85f153f82..8cf2ded515 100644
--- a/modules/other/gail/gailcontainercell.c
+++ b/modules/other/gail/gailcontainercell.c
@@ -119,7 +119,7 @@ gail_container_cell_remove_child (GailContainerCell *container,
g_return_if_fail (GAIL_IS_CELL(child));
g_return_if_fail (container->NChildren > 0);
- g_list_remove (container->children, (gpointer) child);
+ container->children = g_list_remove (container->children, (gpointer) child);
_gail_container_cell_recompute_child_indices (container);
container->NChildren--;
}