Eina: upgrade eina_inarray_setup to eina_inarray_step_set

Eina model was forgotten since it's been disabled, there's also a
remaining doc reference to the old eina_inarray_setup() function;

Patch by: Leandro Dorileo <dorileo@profusion.mobi>



SVN revision: 75686
This commit is contained in:
Leandro Dorileo 2012-08-24 21:03:07 +00:00 committed by Bruno Dilly
parent 56ab90d0e4
commit 47e8432635
2 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@
* to ask eina to use a step of size 4 because that's how many elements we'll be
* putting on the array:
* @until _step_set
* @note Strictly speaking the reason to call eina_inarray_setup() is not
* @note Strictly speaking the reason to call eina_inarray_step_set() is not
* because we're storing different type, but rather because our types have
* different sizes. Eina inline arrays don't actually know anything about types,
* they only deal in blocks of memory of a given size.

View File

@ -2769,7 +2769,7 @@ _eina_model_interface_children_inarray_setup(Eina_Model *model)
DBG("setup interface children (inarray) at %p model %p (%s)",
priv, model, model->desc->cache.types[0]->name);
eina_inarray_setup(priv, sizeof(Eina_Model *), 0);
eina_inarray_step_set(priv, sizeof(Eina_Inarray), sizeof(Eina_Model *), 0);
return EINA_TRUE;
}