tasn pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=d7c45e41d4a911b160d2c24c13f243d0c7de25a3
commit d7c45e41d4a911b160d2c24c13f243d0c7de25a3 Author: Tom Hacohen <[email protected]> Date: Fri Jun 17 19:22:25 2016 +0100 Eo: Take composite out of beta. This has proved itself very useful, and is used all around our API. It does not make sense to keep it as beta. --- src/lib/eo/eo_base.eo | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/eo/eo_base.eo b/src/lib/eo/eo_base.eo index acc8baf..59b5249 100644 --- a/src/lib/eo/eo_base.eo +++ b/src/lib/eo/eo_base.eo @@ -375,7 +375,7 @@ abstract Eo.Base () [[Get an iterator on all childrens]] return: free(own(iterator<Eo.Base>), eina_iterator_free) @warn_unused; } - composite_attach @beta { + composite_attach { [[Make an object a composite object of another. The class of comp_obj must be part of the extensions of the class of the parent. @@ -389,7 +389,7 @@ abstract Eo.Base () } return: bool; [[$true if successful. $false otherwise.]] } - composite_detach @beta { + composite_detach { [[Detach a composite object from another object. This functions also sets the parent of comp_obj to $null. @@ -401,7 +401,7 @@ abstract Eo.Base () } return: bool; [[$true if successful. $false otherwise.]] } - composite_part_is @beta { + composite_part_is { [[Check if an object is part of a composite object. See @.composite_attach, @.composite_part_is. --
