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-05-21 19:35:11 +0300
committerBastien Montagne <bastien@blender.org>2020-05-21 19:35:11 +0300
commitce74df62486384d1f43dd1f75f3fcfd343bd1721 (patch)
treeed08ad07702cda409f2c17f477686943e764b34c /source/blender/blenkernel/intern/text.c
parent7e4654e4ce2cc5c012c0fe981eda29afd79ec622 (diff)
Refactor: Move NOP idtypes foreach_id to new IDTypeInfo structure.
Diffstat (limited to 'source/blender/blenkernel/intern/text.c')
-rw-r--r--source/blender/blenkernel/intern/text.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/text.c b/source/blender/blenkernel/intern/text.c
index 3cdf3b40ce3..527b54a1aa2 100644
--- a/source/blender/blenkernel/intern/text.c
+++ b/source/blender/blenkernel/intern/text.c
@@ -206,6 +206,7 @@ IDTypeInfo IDType_ID_TXT = {
.copy_data = text_copy_data,
.free_data = text_free_data,
.make_local = NULL,
+ .foreach_id = NULL,
};
/***/