From 52e2774523209655e868d1244f0e2dd3b2d44491 Mon Sep 17 00:00:00 2001 From: Felipe Magno de Almeida Date: Thu, 16 Jun 2016 21:49:28 -0300 Subject: [PATCH] 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.]] } } -- 2.7.4