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:
authorAntonio Vazquez <blendergit@gmail.com>2021-09-22 22:12:11 +0300
committerAntonio Vazquez <blendergit@gmail.com>2021-09-22 22:17:04 +0300
commitbd01f4761cf983e411b9c3fd52dd83a3fd9103f8 (patch)
tree6f2abfd1a145abac9fbe63cf9a61a046a2d9c991 /source/blender/makesrna/intern/rna_gpencil_modifier.c
parentee49991999c9c36cf90bbed513c1a38a688f269b (diff)
GPencil: Fix compiler warnings
Diffstat (limited to 'source/blender/makesrna/intern/rna_gpencil_modifier.c')
-rw-r--r--source/blender/makesrna/intern/rna_gpencil_modifier.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_gpencil_modifier.c b/source/blender/makesrna/intern/rna_gpencil_modifier.c
index a2d5b134056..6480d16ccd2 100644
--- a/source/blender/makesrna/intern/rna_gpencil_modifier.c
+++ b/source/blender/makesrna/intern/rna_gpencil_modifier.c
@@ -2950,7 +2950,7 @@ static void rna_def_modifier_gpencilweight_angle(BlenderRNA *brna)
RNA_def_property_string_sdna(prop, NULL, "target_vgname");
RNA_def_property_ui_text(prop, "Vertex Group", "Output Vertex group");
RNA_def_property_string_funcs(
- prop, NULL, NULL, "rna_WeightProxGpencilModifier_target_vgname_set");
+ prop, NULL, NULL, "rna_WeightAngleGpencilModifier_target_vgname_set");
RNA_def_property_update(prop, 0, "rna_GpencilModifier_update");
prop = RNA_def_property(srna, "use_multiply", PROP_BOOLEAN, PROP_NONE);