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>2010-02-02 03:02:55 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-02-02 03:02:55 +0300
commitecaa50ed7be04fe9ffde0ef3982c318be1f8b728 (patch)
tree1d02f4a0d77cd299c3a0a903b276c90af2089d16 /source/blender/makesrna/intern/rna_access.c
parent53d425ef968b0cbe5155f182febdf8f1cf948534 (diff)
PROP_ANIMATEABLE -> PROP_ANIMATABLE (more common spelling)
Diffstat (limited to 'source/blender/makesrna/intern/rna_access.c')
-rw-r--r--source/blender/makesrna/intern/rna_access.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_access.c b/source/blender/makesrna/intern/rna_access.c
index 4bb00972c15..84baec784df 100644
--- a/source/blender/makesrna/intern/rna_access.c
+++ b/source/blender/makesrna/intern/rna_access.c
@@ -1138,7 +1138,7 @@ int RNA_property_animateable(PointerRNA *ptr, PropertyRNA *prop)
prop= rna_ensure_property(prop);
- if(!(prop->flag & PROP_ANIMATEABLE))
+ if(!(prop->flag & PROP_ANIMATABLE))
return 0;
return (prop->flag & PROP_EDITABLE);