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:
authorJacques Lucke <jacques@blender.org>2020-06-08 13:44:26 +0300
committerJacques Lucke <jacques@blender.org>2020-06-08 13:44:33 +0300
commit0e040ef3fb9af7e97e93190d250aecc0cb68b037 (patch)
tree45ab9179c1c714196ccb930a78d12f83b6dd96e6 /source/blender/makesrna/intern/rna_modifier.c
parentf71a2fc6c381f32e89ac09112ac3b7ebc3f8a794 (diff)
Cleanup: Rename function
I forgot to remove the "_access" suffix in a previous rename.
Diffstat (limited to 'source/blender/makesrna/intern/rna_modifier.c')
-rw-r--r--source/blender/makesrna/intern/rna_modifier.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c
index 1fa89806ce9..b8dad8cf5c1 100644
--- a/source/blender/makesrna/intern/rna_modifier.c
+++ b/source/blender/makesrna/intern/rna_modifier.c
@@ -6778,7 +6778,7 @@ static void rna_def_modifier_weightednormal(BlenderRNA *brna)
RNA_define_lib_overridable(false);
}
-static void rna_def_modifier_simulation_access(BlenderRNA *brna)
+static void rna_def_modifier_simulation(BlenderRNA *brna)
{
StructRNA *srna;
PropertyRNA *prop;
@@ -6930,7 +6930,7 @@ void RNA_def_modifier(BlenderRNA *brna)
rna_def_modifier_meshseqcache(brna);
rna_def_modifier_surfacedeform(brna);
rna_def_modifier_weightednormal(brna);
- rna_def_modifier_simulation_access(brna);
+ rna_def_modifier_simulation(brna);
}
#endif