felipealmeida pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=52e2774523209655e868d1244f0e2dd3b2d44491
commit 52e2774523209655e868d1244f0e2dd3b2d44491 Author: Felipe Magno de Almeida <fel...@expertisesolutions.com.br> Date: Thu Jun 16 21:49:28 2016 -0300 elementary: Modify parameter from @out void to @inout void @out parameters doesn't need initialization, so passing a buffer to a function must be a @in void_ptr or a @inout void, but never an @out void. --- src/lib/elementary/efl_ui_text.eo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elementary/efl_ui_text.eo b/src/lib/elementary/efl_ui_text.eo index acff287..c02aeae 100644 --- a/src/lib/elementary/efl_ui_text.eo +++ b/src/lib/elementary/efl_ui_text.eo @@ -325,7 +325,7 @@ class Efl.Ui.Text (Elm.Layout, Elm.Interface_Scrollable, Efl.Ui.Clickable, input_panel_imdata_get @const { [[Get the specific data of the current input panel.]] params { - @out data: void; [[The specific data to be got from the input panel.]] + @inout data: void; [[The specific data to be got from the input panel.]] @out len: int; [[The length of data.]] } } --