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:
authorBastien Montagne <montagne29@wanadoo.fr>2018-05-01 18:03:23 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-05-01 18:03:23 +0300
commitf6c1762bb3997250fc59c0c3286ee63fe07f1826 (patch)
treeb35b01639d15d5151906dca827bcc10987282a53 /source/blender/makesrna/intern/rna_access.c
parent691c532506086a065aff38df7b834ea83c1de803 (diff)
Fix previous commit, sorry about that :/
Diffstat (limited to 'source/blender/makesrna/intern/rna_access.c')
-rw-r--r--source/blender/makesrna/intern/rna_access.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_access.c b/source/blender/makesrna/intern/rna_access.c
index 3c28cdb3364..d70309dadb8 100644
--- a/source/blender/makesrna/intern/rna_access.c
+++ b/source/blender/makesrna/intern/rna_access.c
@@ -7684,7 +7684,7 @@ bool RNA_struct_override_store(
static void rna_property_override_apply_ex(
PointerRNA *ptr_local, PointerRNA *ptr_override, PointerRNA *ptr_storage,
PropertyRNA *prop_local, PropertyRNA *prop_override, PropertyRNA *prop_storage,
- IDOverrideStaticProperty *op, const bool do_insert)
+ IDOverrideStaticProperty *op)
{
for (IDOverrideStaticPropertyOperation *opop = op->operations.first; opop; opop = opop->next) {
if (!rna_property_override_operation_apply(ptr_local, ptr_override, ptr_storage,
@@ -7721,7 +7721,7 @@ void RNA_struct_override_apply(
rna_property_override_apply_ex(
&data_local, &data_override, prop_storage ? &data_storage : NULL,
- prop_local, prop_override, prop_storage, op, do_insert);
+ prop_local, prop_override, prop_storage, op);
}
#ifndef NDEBUG
else {