lauromoura pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=2078fe00e07e7e86f2c784e8b676cbfdfa697ea4
commit 2078fe00e07e7e86f2c784e8b676cbfdfa697ea4 Author: Cedric Bail <cedric.b...@free.fr> Date: Wed Sep 25 12:00:28 2019 -0300 efl: stabilize Efl.Model Summary: T8267 Depends on D10135 Reviewers: zmike, segfaultxavi, bu5hm4n, SanghyeonLee, lauromoura, felipealmeida Reviewed By: SanghyeonLee Subscribers: #reviewers, #committers Tags: #efl Maniphest Tasks: T7885 Differential Revision: https://phab.enlightenment.org/D10136 --- src/lib/efl/interfaces/efl_model.eo | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/efl/interfaces/efl_model.eo b/src/lib/efl/interfaces/efl_model.eo index 5713df6dc4..477e9e10b5 100644 --- a/src/lib/efl/interfaces/efl_model.eo +++ b/src/lib/efl/interfaces/efl_model.eo @@ -1,4 +1,4 @@ -struct @beta Efl.Model_Property_Event { +struct Efl.Model_Property_Event { [[EFL model property event data structure]] changed_properties: array<stringshare>; [[List of changed properties]] invalidated_properties: array<stringshare>; [[Removed properties identified by name]] @@ -13,7 +13,7 @@ struct @beta Efl.Model_Children_Event { the parent, it will be available here.]] } -interface @beta Efl.Model +interface Efl.Model { [[Basic Model abstraction. @@ -178,8 +178,8 @@ interface @beta Efl.Model properties,changed: Efl.Model_Property_Event; [[Event dispatched when properties list is available.]] - child,added: Efl.Model_Children_Event; [[Event dispatched when new child is added.]] - child,removed: Efl.Model_Children_Event; [[Event dispatched when child is removed.]] + child,added @beta: Efl.Model_Children_Event; [[Event dispatched when new child is added.]] + child,removed @beta: Efl.Model_Children_Event; [[Event dispatched when child is removed.]] children,count,changed: void; [[Event dispatched when children count is finished.]] } } --