[Bf-blender-cvs] [bd01f4761cf] master: GPencil: Fix compiler warnings

Antonio Vazquez noreply at git.blender.org
Wed Sep 22 21:17:09 CEST 2021


Commit: bd01f4761cf983e411b9c3fd52dd83a3fd9103f8
Author: Antonio Vazquez
Date:   Wed Sep 22 21:12:11 2021 +0200
Branches: master
https://developer.blender.org/rBbd01f4761cf983e411b9c3fd52dd83a3fd9103f8

GPencil: Fix compiler warnings

===================================================================

M	source/blender/makesrna/intern/rna_gpencil_modifier.c

===================================================================

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);



More information about the Bf-blender-cvs mailing list