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>2015-08-21 02:07:52 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-08-21 02:07:52 +0300
commitaa746677cfb890bb81e1e01bdb543526342d77ee (patch)
tree7fa8104e4b37cbddc3539709619a48c4a66ac944 /source/blender/blenloader/BLO_blend_defs.h
parent10edaff5c1a18ca7e91743b3244a6007363b592c (diff)
Docs: correct some comments
Diffstat (limited to 'source/blender/blenloader/BLO_blend_defs.h')
-rw-r--r--source/blender/blenloader/BLO_blend_defs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenloader/BLO_blend_defs.h b/source/blender/blenloader/BLO_blend_defs.h
index 34a881bd7cc..44f0fa9aa53 100644
--- a/source/blender/blenloader/BLO_blend_defs.h
+++ b/source/blender/blenloader/BLO_blend_defs.h
@@ -42,7 +42,7 @@
enum {
/**
* Arbitrary allocated memory
- * (owned by #ID's, or will leak on exit)
+ * (typically owned by #ID's, will be freed when there are no users).
*/
DATA = BLEND_MAKE_ID('D', 'A', 'T', 'A'),
/**
@@ -55,8 +55,8 @@ enum {
*/
DNA1 = BLEND_MAKE_ID('D', 'N', 'A', '1'),
/**
- * Used as preview between #REND and #GLOB,
- * (ignored for regular file reading)
+ * Used to store thumbnail previews, written between #REND and #GLOB blocks,
+ * (ignored for regular file reading).
*/
TEST = BLEND_MAKE_ID('T', 'E', 'S', 'T'),
/**