q66 pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=bacbb1e5bdd693cc8cfbbc95fc8ad8851dbc0a64
commit bacbb1e5bdd693cc8cfbbc95fc8ad8851dbc0a64 Author: Daniel Kolesa <d.kol...@osg.samsung.com> Date: Thu Nov 10 15:43:15 2016 +0100 elm radio, scroller, sys_notify: remove pointers --- src/lib/elementary/elm_radio.eo | 2 +- src/lib/elementary/elm_scroller.eo | 4 ++-- src/lib/elementary/elm_sys_notify.eo | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/elementary/elm_radio.eo b/src/lib/elementary/elm_radio.eo index 893af6d..44f36da 100644 --- a/src/lib/elementary/elm_radio.eo +++ b/src/lib/elementary/elm_radio.eo @@ -51,7 +51,7 @@ class Elm.Radio (Elm.Check, Elm.Interface.Atspi_Widget_Action) ]] } values { - valuep: int * @nullable; [[Pointer to the integer to modify]] + valuep: ptr(int) @nullable; [[Pointer to the integer to modify]] } } @property selected_object { diff --git a/src/lib/elementary/elm_scroller.eo b/src/lib/elementary/elm_scroller.eo index 8b9fe46..2dcfd90 100644 --- a/src/lib/elementary/elm_scroller.eo +++ b/src/lib/elementary/elm_scroller.eo @@ -52,8 +52,8 @@ class Elm.Scroller (Elm.Layout, Elm.Interface_Scrollable, @since 1.8 ]] params { - @in page_limit_h: int *; [[The maximum of the movable horizontal page]] - @in page_limit_v: int *; [[The maximum of the movable vertical page]] + @in page_limit_h: ptr(int); [[The maximum of the movable horizontal page]] + @in page_limit_v: ptr(int); [[The maximum of the movable vertical page]] } } } diff --git a/src/lib/elementary/elm_sys_notify.eo b/src/lib/elementary/elm_sys_notify.eo index 5282db5..881a5ef 100644 --- a/src/lib/elementary/elm_sys_notify.eo +++ b/src/lib/elementary/elm_sys_notify.eo @@ -37,7 +37,7 @@ struct Elm.Sys_Notify.Action_Invoked @since 1.8 ]] id: uint; [[ID of the notification]] - action_key: char *; [[The key of the action invoked. These match the + action_key: ptr(char); [[The key of the action invoked. These match the keys sent over in the list of actions]] } --