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>2012-02-24 15:04:09 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-24 15:04:09 +0400
commitc839ff3acbf92645b5fac3ea884344d2117df4bb (patch)
tree71b1c7637c3d9bb628ff256a1a501946db0af3e6 /source/blender/makesrna/intern/rna_define.c
parent8c501c2248b4880b66a0ba52ff138698773ae36e (diff)
bmesh py api - bmesh.utils.face_flip
Diffstat (limited to 'source/blender/makesrna/intern/rna_define.c')
-rw-r--r--source/blender/makesrna/intern/rna_define.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_define.c b/source/blender/makesrna/intern/rna_define.c
index 53944f7ec5c..2ea21baf257 100644
--- a/source/blender/makesrna/intern/rna_define.c
+++ b/source/blender/makesrna/intern/rna_define.c
@@ -2666,7 +2666,7 @@ int rna_parameter_size(PropertyRNA *parm)
case PROP_FLOAT:
return sizeof(float);
case PROP_STRING:
- /* return valyes dont store a pointer to the original */
+ /* return values don't store a pointer to the original */
if(parm->flag & PROP_THICK_WRAP) {
StringPropertyRNA *sparm= (StringPropertyRNA*)parm;
return sizeof(char) * sparm->maxlength;