From a13696a242fb07c5aa83d796639ff21e1aaf1201 Mon Sep 17 00:00:00 2001 From: Germano Cavalcante Date: Wed, 22 Nov 2023 18:44:41 -0300 Subject: [PATCH] Fix #115279: FModifier.type enum 'NULL' item was renamed to 'nullptr' The 'NULL' identifier within the `FModifier.type` enum was acidently renamed to 'nullptr' during the C to C++ source conversion in 3ece6876af. --- source/blender/makesrna/intern/rna_fcurve.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/makesrna/intern/rna_fcurve.cc b/source/blender/makesrna/intern/rna_fcurve.cc index c0588deff63..5b72463509e 100644 --- a/source/blender/makesrna/intern/rna_fcurve.cc +++ b/source/blender/makesrna/intern/rna_fcurve.cc @@ -35,7 +35,7 @@ #endif const EnumPropertyItem rna_enum_fmodifier_type_items[] = { - {FMODIFIER_TYPE_NULL, "nullptr", 0, "Invalid", ""}, + {FMODIFIER_TYPE_NULL, "NULL", 0, "Invalid", ""}, {FMODIFIER_TYPE_GENERATOR, "GENERATOR", 0,