diff options
Diffstat (limited to 'src/lib/evas/canvas/evas_table.eo')
-rw-r--r-- | src/lib/evas/canvas/evas_table.eo | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/evas/canvas/evas_table.eo b/src/lib/evas/canvas/evas_table.eo index 6aafbeb..3736bb4 100644 --- a/src/lib/evas/canvas/evas_table.eo +++ b/src/lib/evas/canvas/evas_table.eo | |||
@@ -122,7 +122,7 @@ class Evas.Table (Efl.Canvas.Group) | |||
122 | It's up to the user to destroy it when it no longer needs it. | 122 | It's up to the user to destroy it when it no longer needs it. |
123 | It's possible to remove objects from the table when walking this | 123 | It's possible to remove objects from the table when walking this |
124 | list, but these removals won't be reflected on it.]] | 124 | list, but these removals won't be reflected on it.]] |
125 | return: free(own(list<Efl.Canvas.Object>), eina_list_free) @warn_unused; [[Children list]] | 125 | return: list<Efl.Canvas.Object> @owned @warn_unused; [[Children list]] |
126 | } | 126 | } |
127 | } | 127 | } |
128 | @property child { | 128 | @property child { |
@@ -150,14 +150,14 @@ class Evas.Table (Efl.Canvas.Group) | |||
150 | [[Get an accessor to get random access to the list of children for the table. | 150 | [[Get an accessor to get random access to the list of children for the table. |
151 | 151 | ||
152 | Note: Do not remove or delete objects while walking the list.]] | 152 | Note: Do not remove or delete objects while walking the list.]] |
153 | return: free(own(accessor<Efl.Canvas.Object>), eina_accessor_free) | 153 | return: accessor<Efl.Canvas.Object> @owned |
154 | @warn_unused; [[Accessor to children list]] | 154 | @warn_unused; [[Accessor to children list]] |
155 | } | 155 | } |
156 | iterator_new @const { | 156 | iterator_new @const { |
157 | [[Get an iterator to walk the list of children for the table. | 157 | [[Get an iterator to walk the list of children for the table. |
158 | 158 | ||
159 | Note: Do not remove or delete objects while walking the list.]] | 159 | Note: Do not remove or delete objects while walking the list.]] |
160 | return: free(own(iterator<Efl.Canvas.Object>), eina_iterator_free) | 160 | return: iterator<Efl.Canvas.Object> @owned |
161 | @warn_unused; [[Iterator to children]] | 161 | @warn_unused; [[Iterator to children]] |
162 | } | 162 | } |
163 | add_to { | 163 | add_to { |