not needed anymore as they are in their source file, now

SVN revision: 35156
This commit is contained in:
doursse 2008-07-18 11:11:04 +00:00 committed by doursse
parent d11bfc2323
commit 21a5e030f2
1 changed files with 0 additions and 15 deletions

View File

@ -202,19 +202,4 @@ evas_object_clip_recalc(Evas_Object *obj)
obj->cur.cache.clip.dirty = 0;
}
static inline void
_evas_array_append(Evas_Array *array, void *data)
{
if (UNLIKELY((array->count + array->step) > array->total))
if (!_evas_array_grow(array)) return ;
array->data[array->count++] = data;
}
static inline void*
_evas_array_get(Evas_Array *array, unsigned int index)
{
return array->data[index];
}
#endif