elementary: fix string definition

eolian is note made to have ptr(char) be the same as string.

Differential Revision: https://phab.enlightenment.org/D11740
This commit is contained in:
Marcel Hollerbach 2020-04-11 21:15:07 +02:00
parent 639b6d6ae3
commit 906c60f0c0
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ EAPI elm_atspi_text_text_attribute_free(Efl_Access_Text_Attribute *attr)
EAPI void
elm_atspi_text_text_range_free(Efl_Access_Text_Range *range)
{
free(range->content);
free((char*)range->content);
free(range);
}

View File

@ -31,7 +31,7 @@ struct @beta @free(elm_atspi_text_text_range_free) Efl.Access.Text_Range
[[Text range]]
start_offset: int; [[Range start offset]]
end_offset : int; [[Range end offset]]
content: ptr(char); [[Range content]]
content: string; [[Range content]]
}
struct @beta Efl.Access.Text_Change_Info