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:
authorCampbell Barton <ideasman42@gmail.com>2019-04-16 10:15:39 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-16 13:01:55 +0300
commitf37a27b074607f044bdf8e54e7d92dfdac236a67 (patch)
treed74928636c7e03a050d6f282c02811db8d9e9cba
parentc9b8db74dce9b3d3a1681c2aa1c05e4d553f94d4 (diff)
Cleanup: comment
-rw-r--r--source/blender/blenkernel/intern/idcode.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/idcode.c b/source/blender/blenkernel/intern/idcode.c
index 515a28d7355..42864fa8350 100644
--- a/source/blender/blenkernel/intern/idcode.c
+++ b/source/blender/blenkernel/intern/idcode.c
@@ -44,8 +44,11 @@ typedef struct {
#define IDTYPE_FLAGS_ISLINKABLE (1 << 0)
} IDType;
-/* plural need to match rna_main.c's MainCollectionDef */
-/* WARNING! Keep it in sync with i18n contexts in BLT_translation.h */
+/**
+ * When editing enusre that:
+ * - Plural need to match rna_main.c's #MainCollectionDef.
+ * - Keep it in sync with i18n contexts in BLT_translation.h
+ */
static IDType idtypes[] = {
/** ID's directly below must all be in #Main, and be kept in sync with #MAX_LIBARRAY (membership, not order) */
{ID_AC, "Action", "actions", BLT_I18NCONTEXT_ID_ACTION, IDTYPE_FLAGS_ISLINKABLE},