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>2013-05-17 16:43:58 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-05-17 16:43:58 +0400
commit88d1067f58298b14d1ee47b4a3abbaec52208bf8 (patch)
tree7110738eab13a01fe32c256045f1b72fd1edfaf6 /source/blender/makesrna/intern/rna_access.c
parent43748eca2d72af87fb7468b6ba9cbeeb57888137 (diff)
code cleanup: use BM_elem_flag_test rather then accessing 'ele->head.hflag'
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 32aeaebee58..af5de0f469e 100644
--- a/source/blender/makesrna/intern/rna_access.c
+++ b/source/blender/makesrna/intern/rna_access.c
@@ -5023,7 +5023,7 @@ char *RNA_pointer_as_string(bContext *C, PointerRNA *UNUSED(ptr), PropertyRNA *p
/* context and ptr_default can be NULL */
char *RNA_pointer_as_string_keywords_ex(bContext *C, PointerRNA *ptr, PointerRNA *ptr_default,
const short as_function, const short all_args,
- const int max_prop_length,
+ const int max_prop_length,
PropertyRNA *iterprop)
{
const char *arg_name = NULL;