From d7c45e41d4a911b160d2c24c13f243d0c7de25a3 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Fri, 17 Jun 2016 19:22:25 +0100 Subject: [PATCH] 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 acc8bafa6a..59b5249c2e 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), 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.