elm_widget: remove pointers

This commit is contained in:
Daniel Kolesa 2016-11-09 15:47:13 +01:00
parent aaf6c1a8ee
commit 59b0d88447
1 changed files with 6 additions and 6 deletions

View File

@ -77,7 +77,7 @@ abstract Elm.Widget (Efl.Canvas.Group, Elm.Interface.Atspi_Accessible, Elm.Inter
} }
@property theme { @property theme {
values { values {
th: Elm.Theme * @nullable; th: ptr(Elm.Theme) @nullable;
} }
} }
@property disabled { @property disabled {
@ -382,7 +382,7 @@ abstract Elm.Widget (Efl.Canvas.Group, Elm.Interface.Atspi_Accessible, Elm.Inter
} }
cursor_add { cursor_add {
params { params {
@in cur: Elm.Cursor *; @in cur: ptr(Elm.Cursor);
} }
} }
focus_next_object_set { focus_next_object_set {
@ -495,7 +495,7 @@ abstract Elm.Widget (Efl.Canvas.Group, Elm.Interface.Atspi_Accessible, Elm.Inter
} }
cursor_del { cursor_del {
params { params {
@in cur: Elm.Cursor *; @in cur: ptr(Elm.Cursor);
} }
} }
event_callback_del { event_callback_del {
@ -545,7 +545,7 @@ abstract Elm.Widget (Efl.Canvas.Group, Elm.Interface.Atspi_Accessible, Elm.Inter
params { params {
@in type: Evas.Callback_Type; @in type: Evas.Callback_Type;
@in event_info: void_ptr; @in event_info: void_ptr;
@in event_flags: Efl.Input.Flags *; @in event_flags: ptr(Efl.Input.Flags);
} }
} }
signal_callback_add { signal_callback_add {
@ -608,7 +608,7 @@ abstract Elm.Widget (Efl.Canvas.Group, Elm.Interface.Atspi_Accessible, Elm.Inter
} }
tooltip_del { tooltip_del {
params { params {
@in tt: Elm.Tooltip *; @in tt: ptr(Elm.Tooltip);
} }
} }
focus_next_get @const { focus_next_get @const {
@ -716,7 +716,7 @@ abstract Elm.Widget (Efl.Canvas.Group, Elm.Interface.Atspi_Accessible, Elm.Inter
} }
tooltip_add { tooltip_add {
params { params {
@in tt: Elm.Tooltip *; @in tt: ptr(Elm.Tooltip);
} }
} }
focus_region_show @const { focus_region_show @const {