diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/efl/interfaces/efl_model.eo | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/efl/interfaces/efl_model.eo b/src/lib/efl/interfaces/efl_model.eo index 2fae595baa..cc46f5654b 100644 --- a/src/lib/efl/interfaces/efl_model.eo +++ b/src/lib/efl/interfaces/efl_model.eo | |||
@@ -46,7 +46,7 @@ interface Efl.Model () | |||
46 | 46 | ||
47 | @since 1.14 | 47 | @since 1.14 |
48 | ]] | 48 | ]] |
49 | return: ptr(Eina.Future); [[Return an error in case the property could not be set, the value that was set otherwise.]] | 49 | return: future<any_value_ptr>; [[Return an error in case the property could not be set, the value that was set otherwise.]] |
50 | } | 50 | } |
51 | get { | 51 | get { |
52 | [[Retrieve the value of a given property name. | 52 | [[Retrieve the value of a given property name. |
@@ -98,7 +98,8 @@ interface Efl.Model () | |||
98 | @in count: uint; [[Range size. If count is 0, start is | 98 | @in count: uint; [[Range size. If count is 0, start is |
99 | ignored.]] | 99 | ignored.]] |
100 | } | 100 | } |
101 | return: ptr(Eina.Future); [[Array of childrens]] | 101 | /* XXX: is this right? */ |
102 | return: future<accessor<Efl.Object>>; [[Array of childrens]] | ||
102 | } | 103 | } |
103 | @property children_count { | 104 | @property children_count { |
104 | get { | 105 | get { |