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:
authorBastien Montagne <bastien@blender.org>2020-09-18 16:11:31 +0300
committerBastien Montagne <bastien@blender.org>2020-09-20 17:26:39 +0300
commit8afa42b05a260eb4b77327b296e19b24b74b123b (patch)
tree45e7fc9637c0fd76676091a04e14fc098eda9bb3 /source/blender/blenkernel/BKE_idprop.h
parent0bd736e5da6da801f8dd4ba9b4cf9bf17f2daa64 (diff)
IDProperties: Add utils to duplicate content of one IDProp into another.
Diffstat (limited to 'source/blender/blenkernel/BKE_idprop.h')
-rw-r--r--source/blender/blenkernel/BKE_idprop.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_idprop.h b/source/blender/blenkernel/BKE_idprop.h
index e7f9ad207a1..07a82802da8 100644
--- a/source/blender/blenkernel/BKE_idprop.h
+++ b/source/blender/blenkernel/BKE_idprop.h
@@ -127,6 +127,7 @@ struct IDProperty *IDP_CopyProperty(const struct IDProperty *prop) ATTR_WARN_UNU
ATTR_NONNULL();
struct IDProperty *IDP_CopyProperty_ex(const struct IDProperty *prop,
const int flag) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL();
+void IDP_CopyPropertyContent(IDProperty *dst, IDProperty *src) ATTR_NONNULL();
bool IDP_EqualsProperties_ex(IDProperty *prop1,
IDProperty *prop2,