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>2020-09-08 09:41:55 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-09-08 09:41:55 +0300
commitd20b08281e0e5cf47b7b549910b6f5ab7f61e57d (patch)
tree46789b097ecb67f88f49ffd6352d8f9a45af5c59 /source/blender/makesdna
parent748deced1c7b85009142d1ebbffba4c1f2405a3f (diff)
Cleanup: naming for library link enum
Use 'e' prefix, update comments.
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_space_types.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_space_types.h b/source/blender/makesdna/DNA_space_types.h
index 7778a3aa234..92cf9d21e07 100644
--- a/source/blender/makesdna/DNA_space_types.h
+++ b/source/blender/makesdna/DNA_space_types.h
@@ -801,8 +801,10 @@ typedef enum eFileSel_Action {
} eFileSel_Action;
/* sfile->params->flag */
-/* Note: short flag, also used as 16 lower bits of flags in link/append code
- * (WM and BLO code area, see BLO_LibLinkFlags in BLO_readfile.h). */
+/**
+ * \note short flag, also used as 16 lower bits of flags in link/append code
+ * (WM and BLO code area, see #eBLOLibLinkFlags in BLO_readfile.h).
+ */
typedef enum eFileSel_Params_Flag {
FILE_PARAMS_FLAG_UNUSED_1 = (1 << 0), /* cleared */
FILE_RELPATH = (1 << 1),