diff options
author | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2019-02-22 14:08:53 +0100 |
---|---|---|
committer | Cedric BAIL <cedric.bail@free.fr> | 2019-03-06 11:34:53 -0800 |
commit | 999ed5f200d195f087065bcf0df10a91c6297216 (patch) | |
tree | 1702637d56f9ddfda4f4d8b714042096d7284b72 | |
parent | f5fed8764df832fed9b7bb2c2a872223a983a00b (diff) |
eo: mark efl_object stable
fix T7557
Reviewed-by: Cedric BAIL <cedric.bail@free.fr>
Differential Revision: https://phab.enlightenment.org/D8000
-rw-r--r-- | src/lib/eo/efl_class.eo | 2 | ||||
-rw-r--r-- | 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 @@ | |||
1 | abstract @beta Efl.Class | 1 | abstract Efl.Class |
2 | { | 2 | { |
3 | [[Abstract Efl class]] | 3 | [[Abstract Efl class]] |
4 | data: null; | 4 | 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; | |||
27 | const Efl.Callback_Priority_After : Efl.Callback_Priority = 100; | 27 | const Efl.Callback_Priority_After : Efl.Callback_Priority = 100; |
28 | [[Slightly less prioritized than default.]] | 28 | [[Slightly less prioritized than default.]] |
29 | 29 | ||
30 | abstract @beta Efl.Object | 30 | abstract Efl.Object |
31 | { | 31 | { |
32 | [[Abstract EFL object class. | 32 | [[Abstract EFL object class. |
33 | 33 | ||
34 | All EFL objects inherit from this class, which provides basic functionality | 34 | All EFL objects inherit from this class, which provides basic functionality |
35 | like naming, debugging, hierarchy traversal, event emission and life cycle | 35 | like naming, debugging, hierarchy traversal, event emission and life cycle |
36 | management. | 36 | management. |
37 | 37 | ||
38 | Life Cycle | 38 | Life Cycle |
39 | Objects are created with efl_add() and mostly disposed of with efl_del(). | 39 | Objects are created with efl_add() and mostly disposed of with efl_del(). |
40 | As an optimization, efl_add() accepts a list of initialization functions | 40 | As an optimization, efl_add() accepts a list of initialization functions |
@@ -55,6 +55,8 @@ abstract @beta Efl.Object | |||
55 | - Destruction: The object has no parent and it can be destroyed. The | 55 | - Destruction: The object has no parent and it can be destroyed. The |
56 | @.destructor method is called, use it to return any resources the object | 56 | @.destructor method is called, use it to return any resources the object |
57 | might have gathered during its life. | 57 | might have gathered during its life. |
58 | |||
59 | @since 1.22 | ||
58 | ]] | 60 | ]] |
59 | eo_prefix: efl; | 61 | eo_prefix: efl; |
60 | 62 | ||
@@ -131,8 +133,6 @@ abstract @beta Efl.Object | |||
131 | 133 | ||
132 | Usually more debug information should be added to $sb after | 134 | Usually more debug information should be added to $sb after |
133 | calling the super function. | 135 | calling the super function. |
134 | |||
135 | @since 1.21 | ||
136 | ]] | 136 | ]] |
137 | params { | 137 | params { |
138 | @in sb: strbuf; [[A string buffer, must not be $null.]] | 138 | @in sb: strbuf; [[A string buffer, must not be $null.]] |
@@ -378,7 +378,7 @@ abstract @beta Efl.Object | |||
378 | ]] | 378 | ]] |
379 | return: bool; [[$true if it is. $false otherwise.]] | 379 | return: bool; [[$true if it is. $false otherwise.]] |
380 | } | 380 | } |
381 | @property allow_parent_unref { | 381 | @property allow_parent_unref @beta { |
382 | [[Allow an object to be deleted by unref even if it has a parent. | 382 | [[Allow an object to be deleted by unref even if it has a parent. |
383 | 383 | ||
384 | This simply hides the error message warning that an object being | 384 | This simply hides the error message warning that an object being |