Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-01-18 04:58:19 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-01-18 04:58:19 +0300
commit8cf1184c045d37b7aecd5b8a08ecefefeed17850 (patch)
treeb8762cba9f4fd48368a31116eda82c6d80462fdd /source/blender/makesrna/intern/rna_internal.h
parent28382c79830f25e2881867f11d7d556b83dd0832 (diff)
bad spelling; 'indicies' --> 'indices'
Diffstat (limited to 'source/blender/makesrna/intern/rna_internal.h')
-rw-r--r--source/blender/makesrna/intern/rna_internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_internal.h b/source/blender/makesrna/intern/rna_internal.h
index a5dd4f58d5b..87e35c09b12 100644
--- a/source/blender/makesrna/intern/rna_internal.h
+++ b/source/blender/makesrna/intern/rna_internal.h
@@ -325,11 +325,11 @@ typedef struct ArrayIterator {
void *free_ptr; /* will be free'd if set */
int itemsize;
- /* array length with no skip functins applied, take care not to compare against index from animsys or python indicies */
+ /* array length with no skip functins applied, take care not to compare against index from animsys or python indices */
int length;
/* optional skip function, when set the array as viewed by rna can contain only a subset of the members.
- * this changes indicies so quick array index lookups are not possible when skip function is used. */
+ * this changes indices so quick array index lookups are not possible when skip function is used. */
IteratorSkipFunc skip;
} ArrayIterator;