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 <campbell@blender.org>2022-03-10 03:32:48 +0300
committerCampbell Barton <campbell@blender.org>2022-03-10 08:27:18 +0300
commit1829232598e6e94e6b0735d86ae8ea34a4bff0c8 (patch)
tree07d27312a860b43e173998351bcb2bac6db63939 /source/blender/makesdna
parent0ef8a6179d2a773b2570352bd0cb7eb18b666da2 (diff)
Cleanup: spelling in comments & some minor clarifications
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_ID.h6
-rw-r--r--source/blender/makesdna/DNA_action_types.h18
2 files changed, 12 insertions, 12 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,
/**
diff --git a/source/blender/makesdna/DNA_action_types.h b/source/blender/makesdna/DNA_action_types.h
index fa0898e6ea5..516d3ce94f9 100644
--- a/source/blender/makesdna/DNA_action_types.h
+++ b/source/blender/makesdna/DNA_action_types.h
@@ -875,27 +875,27 @@ typedef enum eSAction_Flag {
SACTION_SHOW_MARKERS = (1 << 14),
} eSAction_Flag;
-/* SpaceAction_Runtime.flag */
+/** #SpaceAction_Runtime.flag */
typedef enum eSAction_Runtime_Flag {
/** Temporary flag to force channel selections to be synced with main */
SACTION_RUNTIME_FLAG_NEED_CHAN_SYNC = (1 << 0),
} eSAction_Runtime_Flag;
-/* SpaceAction Mode Settings */
+/** #SpaceAction.mode */
typedef enum eAnimEdit_Context {
- /* action on the active object */
+ /** Action on the active object. */
SACTCONT_ACTION = 0,
- /* list of all shapekeys on the active object, linked with their F-Curves */
+ /** List of all shape-keys on the active object, linked with their F-Curves. */
SACTCONT_SHAPEKEY = 1,
- /* editing of gpencil data */
+ /** Editing of grease-pencil data. */
SACTCONT_GPENCIL = 2,
- /* dopesheet (default) */
+ /** Dope-sheet (default). */
SACTCONT_DOPESHEET = 3,
- /* mask */
+ /** Mask. */
SACTCONT_MASK = 4,
- /* cache file */
+ /** Cache file */
SACTCONT_CACHEFILE = 5,
- /* timeline - replacement for the standalone "timeline editor" */
+ /** Timeline - replacement for the standalone "timeline editor". */
SACTCONT_TIMELINE = 6,
} eAnimEdit_Context;