edje: fix return type for part_text_cursor_content_get

Another spot that should've stayed "char *" and not "string". Also added the
missing 'own'.
Found due to a warning after ee36fdc218.
This commit is contained in:
Daniel Hirt 2016-06-30 16:53:40 +00:00
parent 9f43ef3fd9
commit 6df439b3e9
1 changed files with 1 additions and 1 deletions

View File

@ -830,7 +830,7 @@ class Edje.Object (Efl.Canvas.Group.Clipped, Efl.File, Efl.Container, Efl.Part)
You must free the return (if not $null) after you are done with it.]]
return: string; [[The character string pointed to (may be a multi-byte utf8 sequence) terminated by a nul byte.]]
return: own(char *); [[The character string pointed to (may be a multi-byte utf8 sequence) terminated by a nul byte.]]
params {
@in part: string; [[The part name]]
@in cur: Edje.Cursor; [[The cursor to use]]