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>2021-01-05 05:38:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-01-05 07:51:50 +0300
commit6990b6ed3bdab971544a69c3950ac8897e62f41d (patch)
tree6bbf1959d51b4ad93711e3755f254bdb122d4ce7 /source/blender/makesdna
parentf359102589f0ebeeb90376ae66f06678dcc596e7 (diff)
Cleanup: typos (repeated words)
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_outliner_types.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/makesdna/DNA_outliner_types.h b/source/blender/makesdna/DNA_outliner_types.h
index 95d5a2ba73c..8a8a40a5069 100644
--- a/source/blender/makesdna/DNA_outliner_types.h
+++ b/source/blender/makesdna/DNA_outliner_types.h
@@ -35,11 +35,11 @@ typedef struct TreeStoreElem {
short type, nr, flag, used;
/* XXX We actually also store non-ID data in this pointer for identifying
- * the TreeStoreElem for a TreeElement when rebuilding the tree. Ugly! */
+ * the #TreeStoreElem for a #TreeElement when rebuilding the tree. Ugly! */
struct ID *id;
} TreeStoreElem;
-/* used only to store data in in blend files */
+/** Used only to store data in blend files. */
typedef struct TreeStore {
/** Was previously used for memory preallocation. */
int totelem DNA_DEPRECATED;
@@ -52,7 +52,7 @@ typedef struct TreeStore {
TreeStoreElem *data;
} TreeStore;
-/* TreeStoreElem->flag */
+/** #TreeStoreElem.flag */
enum {
TSE_CLOSED = (1 << 0),
TSE_SELECTED = (1 << 1),
@@ -71,7 +71,7 @@ enum {
TSE_HIGHLIGHTED_ANY = (TSE_HIGHLIGHTED | TSE_HIGHLIGHTED_ICON),
};
-/* TreeStoreElem->types */
+/** #TreeStoreElem.types */
#define TSE_NLA 1 /* NO ID */
#define TSE_NLA_ACTION 2
#define TSE_DEFGROUP_BASE 3
@@ -120,7 +120,7 @@ enum {
#define TSE_LIBRARY_OVERRIDE_BASE 44
#define TSE_LIBRARY_OVERRIDE 45
-/* Check whether given TreeStoreElem should have a real ID in its ->id member. */
+/** Check whether given #TreeStoreElem should have a real ID in #TreeStoreElem.id member. */
#define TSE_IS_REAL_ID(_tse) \
(!ELEM((_tse)->type, \
TSE_NLA, \