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-06-16 06:37:21 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-06-17 01:05:58 +0300
commite85635b8825f9ca52a43408b58c5f66c4e3742e6 (patch)
treec14178aa0b479f3921d26fb980d1f15b8c0faa89 /source/blender/makesdna
parent40a8c4908818bdf1c4628a389803a9a26e2d68f1 (diff)
Cleanup: comment spelling
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_ID.h4
-rw-r--r--source/blender/makesdna/DNA_movieclip_types.h2
-rw-r--r--source/blender/makesdna/DNA_object_types.h6
-rw-r--r--source/blender/makesdna/DNA_workspace_types.h2
4 files changed, 8 insertions, 6 deletions
diff --git a/source/blender/makesdna/DNA_ID.h b/source/blender/makesdna/DNA_ID.h
index 122755a6491..2eace6d07d5 100644
--- a/source/blender/makesdna/DNA_ID.h
+++ b/source/blender/makesdna/DNA_ID.h
@@ -492,7 +492,7 @@ enum {
* but is used (linked) directly by current .blend file. */
LIB_TAG_EXTERN = 1 << 0,
/* RESET_NEVER Datablock is from a library,
- * and is only used (linked) inderectly through other libraries. */
+ * and is only used (linked) indirectly through other libraries. */
LIB_TAG_INDIRECT = 1 << 1,
/* RESET_AFTER_USE Flag used internally in readfile.c,
@@ -585,7 +585,7 @@ typedef enum IDRecalcFlag {
/* Selection of the ID itself or its components (for example, vertices) did
* change, and all the drawing data is to eb updated. */
ID_RECALC_SELECT = (1 << 9),
- /* Flags on the base did change, and is to be compied onto all the copies of
+ /* Flags on the base did change, and is to be copied onto all the copies of
* corresponding objects. */
ID_RECALC_BASE_FLAGS = (1 << 10),
ID_RECALC_POINT_CACHE = (1 << 11),
diff --git a/source/blender/makesdna/DNA_movieclip_types.h b/source/blender/makesdna/DNA_movieclip_types.h
index 38ef17f4545..c804a78eccb 100644
--- a/source/blender/makesdna/DNA_movieclip_types.h
+++ b/source/blender/makesdna/DNA_movieclip_types.h
@@ -100,7 +100,7 @@ typedef struct MovieClip {
/**
* Scene frame number footage starts playing at affects all data
* which is associated with a clip such as motion tracking,
- * camera reconstruciton and so.
+ * camera Reconstruction and so.
*/
int start_frame;
/**
diff --git a/source/blender/makesdna/DNA_object_types.h b/source/blender/makesdna/DNA_object_types.h
index e248d60b69b..66e01cae37b 100644
--- a/source/blender/makesdna/DNA_object_types.h
+++ b/source/blender/makesdna/DNA_object_types.h
@@ -155,8 +155,10 @@ typedef struct Object_Runtime {
* It has all modifiers applied.
*/
struct Mesh *mesh_eval;
- /* Denotes whether the evaluated mesh is ownbed by this object or is referenced and owned by
- * somebody else. */
+ /**
+ * Denotes whether the evaluated mesh is owned by this object or is referenced and owned by
+ * somebody else.
+ */
int is_mesh_eval_owned;
int _pad3[3];
/**
diff --git a/source/blender/makesdna/DNA_workspace_types.h b/source/blender/makesdna/DNA_workspace_types.h
index 2b5d81d02a0..dbfb0cc6346 100644
--- a/source/blender/makesdna/DNA_workspace_types.h
+++ b/source/blender/makesdna/DNA_workspace_types.h
@@ -53,7 +53,7 @@ typedef struct bToolRef {
/** #bToolKey (spacetype, mode), used in 'WM_api.h' */
short space_type;
/**
- * Value depends ont the 'space_type', object mode for 3D view, image editor has own mode too.
+ * Value depends on the 'space_type', object mode for 3D view, image editor has own mode too.
* RNA needs to handle using item function.
*/
int mode;