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:
Diffstat (limited to 'source/blender/makesdna/DNA_ID.h')
-rw-r--r--source/blender/makesdna/DNA_ID.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesdna/DNA_ID.h b/source/blender/makesdna/DNA_ID.h
index e3be31d3afe..c3132eeab3d 100644
--- a/source/blender/makesdna/DNA_ID.h
+++ b/source/blender/makesdna/DNA_ID.h
@@ -609,7 +609,7 @@ typedef struct PreviewImage {
/** id->flag (persistent). */
enum {
- /** Don't delete the datablock even if unused. */
+ /** Don't delete the data-block even if unused. */
LIB_FAKEUSER = 1 << 9,
/**
* The data-block is a sub-data of another one.
@@ -617,14 +617,14 @@ enum {
*/
LIB_EMBEDDED_DATA = 1 << 10,
/**
- * Datablock is from a library and linked indirectly, with LIB_TAG_INDIRECT
+ * Data-block is from a library and linked indirectly, with LIB_TAG_INDIRECT
* tag set. But the current .blend file also has a weak pointer to it that
* we want to restore if possible, and silently drop if it's missing.
*/
LIB_INDIRECT_WEAK_LINK = 1 << 11,
/**
* The data-block is a sub-data of another one, which is an override.
- * Note that this also applies to shapekeys, even though they are not 100% embedded data...
+ * Note that this also applies to shape-keys, even though they are not 100% embedded data.
*/
LIB_EMBEDDED_DATA_LIB_OVERRIDE = 1 << 12,
/**