summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Dilly <bdilly@profusion.mobi>2012-08-24 21:03:07 +0000
committerBruno Dilly <bdilly@profusion.mobi>2012-08-24 21:03:07 +0000
commitcb86c12accacc8b680deabc9ff117fb5312bb4a8 (patch)
tree34cd4a87066cf3b879d8fea28c65248880961e26
parent6465d76c38cb27136cce78f37d36b8ec2e72e0ed (diff)
downloadeina-cb86c12accacc8b680deabc9ff117fb5312bb4a8.tar.gz
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
-rw-r--r--src/include/eina_inarray.h2
-rw-r--r--src/lib/eina_model.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/include/eina_inarray.h b/src/include/eina_inarray.h
index 5a9f9d9..034a116 100644
--- a/src/include/eina_inarray.h
+++ b/src/include/eina_inarray.h
@@ -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.
diff --git a/src/lib/eina_model.c b/src/lib/eina_model.c
index ee8e3e9..22ca718 100644
--- a/src/lib/eina_model.c
+++ b/src/lib/eina_model.c
@@ -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;
}