From ca476a638c89634c17a025eff184a81e92d13f50 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 17 Jan 2021 18:21:27 +1100 Subject: RNA: report an error when the name property is set twice This helps avoid copy-paste errors which have happened a few times, no functional changes. --- source/blender/makesrna/intern/rna_attribute.c | 1 - 1 file changed, 1 deletion(-) (limited to 'source/blender/makesrna/intern/rna_attribute.c') diff --git a/source/blender/makesrna/intern/rna_attribute.c b/source/blender/makesrna/intern/rna_attribute.c index 0d973e8e94e..7cd6e375a82 100644 --- a/source/blender/makesrna/intern/rna_attribute.c +++ b/source/blender/makesrna/intern/rna_attribute.c @@ -566,7 +566,6 @@ static void rna_def_attribute(BlenderRNA *brna) RNA_def_struct_path_func(srna, "rna_Attribute_path"); prop = RNA_def_property(srna, "name", PROP_STRING, PROP_NONE); - RNA_def_struct_name_property(srna, prop); RNA_def_property_string_funcs(prop, NULL, NULL, "rna_Attribute_name_set"); RNA_def_property_editable_func(prop, "rna_Attribute_name_editable"); RNA_def_property_ui_text(prop, "Name", "Name of the Attribute"); -- cgit v1.2.3