efl_ui_focus_manager_calc: correctly specify owned where its needed

This commit is contained in:
Marcel Hollerbach 2017-09-29 11:27:18 +02:00
parent e5d1c1f195
commit 1ad1d8010e
1 changed files with 2 additions and 2 deletions

View File

@ -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 {