elm dayselector, entry, glview: remove pointers

This commit is contained in:
Daniel Kolesa 2016-11-10 15:38:53 +01:00
parent 318bf22a99
commit 50884a139b
3 changed files with 4 additions and 4 deletions

View File

@ -106,7 +106,7 @@ class Elm.Dayselector (Elm.Layout)
*/
params {
@in weekdays: string * @nullable; [[Array of seven strings to be used as weekday names.
@in weekdays: ptr(string) @nullable; [[Array of seven strings to be used as weekday names.
Warning: It must have 7 elements, or it will access invalid memory.
Warning: The strings must be NULL terminated ('@\0').]]
}

View File

@ -633,7 +633,7 @@ class Elm.Entry (Elm.Layout, Elm.Interface_Scrollable, Efl.Ui.Clickable,
Only the text is returned, any format that may exist will not be part
of the return value. You must free the string when done with \@ref free.
]]
return: own(char *) @warn_unused;
return: own(ptr(char)) @warn_unused;
}
}
@property selection {

View File

@ -146,7 +146,7 @@ class Elm.Glview (Elm.Widget, Efl.Gfx.View)
@property gl_api {
get {
[[Get the gl api struct for gl rendering.]]
return: Evas_GL_API *;
return: ptr(Evas_GL_API);
}
}
@property evas_gl {
@ -159,7 +159,7 @@ class Elm.Glview (Elm.Widget, Efl.Gfx.View)
@since 1.12
]]
return: Evas_GL *;
return: ptr(Evas_GL);
}
}
@property rotation {