From: Felipe Magno de Almeida Date: Fri, 17 Jun 2016 00:49:28 +0000 (-0300) Subject: elementary: Modify parameter from @out void to @inout void X-Git-Tag: upstream/1.20.0~5668 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=52e2774523209655e868d1244f0e2dd3b2d44491;p=platform%2Fupstream%2Fefl.git 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. --- 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.]] } }