diff options
Diffstat (limited to 'src/lib/eo/efl_object.eo')
-rw-r--r-- | src/lib/eo/efl_object.eo | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/eo/efl_object.eo b/src/lib/eo/efl_object.eo index d1dd10c..68d0d19 100644 --- a/src/lib/eo/efl_object.eo +++ b/src/lib/eo/efl_object.eo | |||
@@ -98,9 +98,9 @@ abstract Efl.Object () | |||
98 | @since 1.21 | 98 | @since 1.21 |
99 | ]] | 99 | ]] |
100 | params { | 100 | params { |
101 | @in sb: own(ptr(Eina.Strbuf)); [[A string buffer, must not be $null.]] | 101 | @in sb: ptr(Eina.Strbuf) @owned; [[A string buffer, must not be $null.]] |
102 | } | 102 | } |
103 | return: own(ptr(Eina.Strbuf)); [[Should not be $null, may be $sb.]] | 103 | return: ptr(Eina.Strbuf) @owned; [[Should not be $null, may be $sb.]] |
104 | } | 104 | } |
105 | @property event_global_freeze_count @class { | 105 | @property event_global_freeze_count @class { |
106 | get { | 106 | get { |
@@ -227,7 +227,7 @@ abstract Efl.Object () | |||
227 | } | 227 | } |
228 | children_iterator_new { | 228 | children_iterator_new { |
229 | [[Get an iterator on all childrens]] | 229 | [[Get an iterator on all childrens]] |
230 | return: free(own(iterator<Efl.Object>), eina_iterator_free) @warn_unused; [[Children iterator]] | 230 | return: iterator<Efl.Object> @owned @warn_unused; [[Children iterator]] |
231 | } | 231 | } |
232 | composite_attach { | 232 | composite_attach { |
233 | [[Make an object a composite object of another. | 233 | [[Make an object a composite object of another. |