From 1ad1d8010e4397256278dd045f8b9dbeb2b9b385 Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Fri, 29 Sep 2017 11:27:18 +0200 Subject: [PATCH] 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); [[the list with the new order]] + children : list @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; [[the order of items]] + children : list @owned; [[the order of items]] } } unregister {