evas textblock - use proepr free iterator prototype

This commit is contained in:
Carsten Haitzler 2018-11-08 15:59:02 +00:00
parent ca26f83ec9
commit 34b45b235c
1 changed files with 1 additions and 2 deletions

View File

@ -15149,14 +15149,13 @@ _evas_textblock_annotation_iterator_next(Efl_Text_Annotate_Annotation_Iterator *
* @param it the iterator to free
* @return EINA_FALSE if unsuccessful. Otherwise, returns EINA_TRUE.
*/
static Eina_Bool
static void
_evas_textblock_annotation_iterator_free(Efl_Text_Annotate_Annotation_Iterator *it)
{
EINA_MAGIC_SET(&it->iterator, 0);
it->current = NULL;
eina_list_free(it->list);
free(it);
return EINA_TRUE;
}
/**