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:
Diffstat (limited to 'source/blender/makesrna/intern/makesrna.c')
-rw-r--r--source/blender/makesrna/intern/makesrna.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/makesrna.c b/source/blender/makesrna/intern/makesrna.c
index c7cbd8d0ac6..3c2e3ddb300 100644
--- a/source/blender/makesrna/intern/makesrna.c
+++ b/source/blender/makesrna/intern/makesrna.c
@@ -1823,7 +1823,9 @@ static void rna_def_struct_function_prototype_cpp(FILE *f, StructRNA *UNUSED(srn
flag = dp->prop->flag;
pout = (flag & PROP_OUTPUT);
- if (type == PROP_POINTER)
+ if (flag & PROP_DYNAMIC)
+ ptrstr = pout ? "**" : "*";
+ else if (type == PROP_POINTER)
ptrstr = pout ? "*": "";
else if (dp->prop->arraydimension)
ptrstr = "*";