From a2fcfcabd74294d261bc76ed18d6591e4b9ea8fb Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Tue, 18 Oct 2022 16:50:42 +0200 Subject: Cleanup: add missing CPPType for MStringProperty --- source/blender/blenkernel/intern/customdata.cc | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source/blender') diff --git a/source/blender/blenkernel/intern/customdata.cc b/source/blender/blenkernel/intern/customdata.cc index 6f2390fc28f..03a0f17a4bb 100644 --- a/source/blender/blenkernel/intern/customdata.cc +++ b/source/blender/blenkernel/intern/customdata.cc @@ -19,6 +19,7 @@ #include "BLI_bitmap.h" #include "BLI_color.hh" +#include "BLI_cpp_type_make.hh" #include "BLI_endian_switch.h" #include "BLI_index_range.hh" #include "BLI_math.h" @@ -5387,6 +5388,8 @@ const blender::CPPType *custom_data_type_to_cpp_type(const eCustomDataType type) return &CPPType::get(); case CD_PROP_BYTE_COLOR: return &CPPType::get(); + case CD_PROP_STRING: + return &CPPType::get(); default: return nullptr; } @@ -5419,6 +5422,9 @@ eCustomDataType cpp_type_to_custom_data_type(const blender::CPPType &type) if (type.is()) { return CD_PROP_BYTE_COLOR; } + if (type.is()) { + return CD_PROP_STRING; + } return static_cast(-1); } @@ -5430,3 +5436,5 @@ size_t CustomData_get_elem_size(CustomDataLayer *layer) { return LAYERTYPEINFO[layer->type].size; } + +BLI_CPP_TYPE_MAKE(MStringProperty, MStringProperty, CPPTypeFlags::None); -- cgit v1.2.3