bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=1ad1d8010e4397256278dd045f8b9dbeb2b9b385
commit 1ad1d8010e4397256278dd045f8b9dbeb2b9b385 Author: Marcel Hollerbach <[email protected]> Date: Fri Sep 29 11:27:18 2017 +0200 efl_ui_focus_manager_calc: correctly specify owned where its needed --- src/lib/elementary/efl_ui_focus_manager_calc.eo | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/elementary/efl_ui_focus_manager_calc.eo b/src/lib/elementary/efl_ui_focus_manager_calc.eo index 2b78b259ac..355ba36612 100644 --- a/src/lib/elementary/efl_ui_focus_manager_calc.eo +++ b/src/lib/elementary/efl_ui_focus_manager_calc.eo @@ -66,7 +66,7 @@ class Efl.Ui.Focus.Manager.Calc (Efl.Object, Efl.Ui.Focus.Manager) { [[Give the list of children a different order.]] params { parent : Efl.Ui.Focus.Object @nonull; [[the parent to update]] - children : own(list<Efl.Ui.Focus.Object>); [[the list with the new order]] + children : list<Efl.Ui.Focus.Object> @owned; [[the list with the new order]] } return : bool; [[$true if successful, $false otherwise]] } @@ -77,7 +77,7 @@ class Efl.Ui.Focus.Manager.Calc (Efl.Object, Efl.Ui.Focus.Manager) { ]] params { parent : Efl.Ui.Focus.Object @nonull; [[the parent to update]] - children : list<Efl.Ui.Focus.Object>; [[the order of items]] + children : list<Efl.Ui.Focus.Object> @owned; [[the order of items]] } } unregister { --
