efl_ui_focus_manager_calc: correctly specify owned where its needed
authorMarcel Hollerbach <marcel-hollerbach@t-online.de>
Fri, 29 Sep 2017 09:27:18 +0000 (11:27 +0200)
committerMarcel Hollerbach <marcel-hollerbach@t-online.de>
Fri, 29 Sep 2017 09:28:15 +0000 (11:28 +0200)
src/lib/elementary/efl_ui_focus_manager_calc.eo

index 2b78b25..355ba36 100644 (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 {