From 999ed5f200d195f087065bcf0df10a91c6297216 Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Fri, 22 Feb 2019 14:08:53 +0100 Subject: [PATCH] eo: mark efl_object stable fix T7557 Reviewed-by: Cedric BAIL Differential Revision: https://phab.enlightenment.org/D8000 --- src/lib/eo/efl_class.eo | 2 +- src/lib/eo/efl_object.eo | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/lib/eo/efl_class.eo b/src/lib/eo/efl_class.eo index 410a6e4c65..b665ec2e8c 100644 --- a/src/lib/eo/efl_class.eo +++ b/src/lib/eo/efl_class.eo @@ -1,4 +1,4 @@ -abstract @beta Efl.Class +abstract Efl.Class { [[Abstract Efl class]] data: null; diff --git a/src/lib/eo/efl_object.eo b/src/lib/eo/efl_object.eo index 1103d85192..39bdc33450 100644 --- a/src/lib/eo/efl_object.eo +++ b/src/lib/eo/efl_object.eo @@ -27,14 +27,14 @@ const Efl.Callback_Priority_Default : Efl.Callback_Priority = 0; const Efl.Callback_Priority_After : Efl.Callback_Priority = 100; [[Slightly less prioritized than default.]] -abstract @beta Efl.Object +abstract Efl.Object { [[Abstract EFL object class. - + All EFL objects inherit from this class, which provides basic functionality like naming, debugging, hierarchy traversal, event emission and life cycle management. - + Life Cycle Objects are created with efl_add() and mostly disposed of with efl_del(). As an optimization, efl_add() accepts a list of initialization functions @@ -55,6 +55,8 @@ abstract @beta Efl.Object - Destruction: The object has no parent and it can be destroyed. The @.destructor method is called, use it to return any resources the object might have gathered during its life. + + @since 1.22 ]] eo_prefix: efl; @@ -131,8 +133,6 @@ abstract @beta Efl.Object Usually more debug information should be added to $sb after calling the super function. - - @since 1.21 ]] params { @in sb: strbuf; [[A string buffer, must not be $null.]] @@ -378,7 +378,7 @@ abstract @beta Efl.Object ]] return: bool; [[$true if it is. $false otherwise.]] } - @property allow_parent_unref { + @property allow_parent_unref @beta { [[Allow an object to be deleted by unref even if it has a parent. This simply hides the error message warning that an object being