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:
authorJeroen Bakker <jeroen@blender.org>2021-08-25 11:00:18 +0300
committerJeroen Bakker <jeroen@blender.org>2021-08-25 11:00:55 +0300
commit8d634c1b27dca7b0b30da461c4be5dccbdbfea9e (patch)
treeac8c81eb6b20269902da1aa1352762e5b77585a1
parente91fd3b816b6362b1f065f2a46bfcfd5cc545185 (diff)
Cleanup: Mentioning incorrect source file in comment.
Code mentions that ID_* were defined in DNA_ID.h but are actually defined in DNA_ID_enums.h.
-rw-r--r--source/blender/blenkernel/BKE_idtype.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/BKE_idtype.h b/source/blender/blenkernel/BKE_idtype.h
index 28171b2b363..b0939ec884d 100644
--- a/source/blender/blenkernel/BKE_idtype.h
+++ b/source/blender/blenkernel/BKE_idtype.h
@@ -114,8 +114,8 @@ typedef struct IDTypeInfo {
/* ********** General IDType data. ********** */
/**
- * Unique identifier of this type, either as a short or an array of two chars, see DNA_ID.h's
- * ID_XX enums.
+ * Unique identifier of this type, either as a short or an array of two chars, see
+ * DNA_ID_enums.h's ID_XX enums.
*/
short id_code;
/**