cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=6231d5f2528ecc71a3f45636ea33eefb1e34678e
commit 6231d5f2528ecc71a3f45636ea33eefb1e34678e Author: Yeongjong Lee <[email protected]> Date: Tue Oct 15 06:21:16 2019 +0000 efl_ui_relative_layout: change child, target parameter type to Efl.Gfx.Entity child, target should be graphical object. Reviewed-by: Cedric BAIL <[email protected]> Differential Revision: https://phab.enlightenment.org/D10401 --- src/lib/elementary/efl_ui_relative_layout.eo | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/lib/elementary/efl_ui_relative_layout.eo b/src/lib/elementary/efl_ui_relative_layout.eo index 03b31831bb..13ac340158 100644 --- a/src/lib/elementary/efl_ui_relative_layout.eo +++ b/src/lib/elementary/efl_ui_relative_layout.eo @@ -9,10 +9,10 @@ class @beta Efl.Ui.Relative_Layout extends Efl.Ui.Widget implements Efl.Pack_Lay [[Specifies the left side edge of the child relative to the target. By default, target is parent and relative is 0.0.]] keys { - child: Efl.Object; [[The child to specify relation.]] + child: Efl.Gfx.Entity; [[The child to specify relation.]] } values { - target: Efl.Object; [[The relative target.]] + target: Efl.Gfx.Entity; [[The relative target.]] relative: double; [[The ratio between left and right of the target, ranging from 0.0 to 1.0.]] } @@ -21,10 +21,10 @@ class @beta Efl.Ui.Relative_Layout extends Efl.Ui.Widget implements Efl.Pack_Lay [[Specifies the right side edge of the child relative to the target. By default, target is parent and relative is 1.0.]] keys { - child: Efl.Object; [[The child to specify relation.]] + child: Efl.Gfx.Entity; [[The child to specify relation.]] } values { - target: Efl.Object; [[The relative target.]] + target: Efl.Gfx.Entity; [[The relative target.]] relative: double; [[The ratio between left and right of the target, ranging from 0.0 to 1.0.]] } @@ -33,10 +33,10 @@ class @beta Efl.Ui.Relative_Layout extends Efl.Ui.Widget implements Efl.Pack_Lay [[Specifies the top side edge of the child relative to the target. By default, target is parent and relative is 0.0.]] keys { - child: Efl.Object; [[The child to specify relation.]] + child: Efl.Gfx.Entity; [[The child to specify relation.]] } values { - target: Efl.Object; [[The relative target.]] + target: Efl.Gfx.Entity; [[The relative target.]] relative: double; [[The ratio between top and bottom of the target, ranging from 0.0 to 1.0.]] } @@ -45,10 +45,10 @@ class @beta Efl.Ui.Relative_Layout extends Efl.Ui.Widget implements Efl.Pack_Lay [[Specifies the bottom side edge of the child relative to the target. By default, target is parent and relative is 1.0.]] keys { - child: Efl.Object; [[The child to specify relation.]] + child: Efl.Gfx.Entity; [[The child to specify relation.]] } values { - target: Efl.Object; [[The relative target.]] + target: Efl.Gfx.Entity; [[The relative target.]] relative: double; [[The ratio between top and bottom of the target, ranging from 0.0 to 1.0.]] } --
