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-01-07 17:00:40 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-07 17:00:40 +0300
commit299ff7dcd1383f5141f5eba3c04c447d5072f705 (patch)
tree2fc7c4975c0a1666254da7edc1c81aaeba907931 /source/blender/makesdna/DNA_screen_types.h
parent5a43406e1bad973a8cb32702b4fdb588068a6dcd (diff)
Cleanup: corrections to last commit
Diffstat (limited to 'source/blender/makesdna/DNA_screen_types.h')
-rw-r--r--source/blender/makesdna/DNA_screen_types.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/source/blender/makesdna/DNA_screen_types.h b/source/blender/makesdna/DNA_screen_types.h
index 4b7eaf3dab3..85be6cac383 100644
--- a/source/blender/makesdna/DNA_screen_types.h
+++ b/source/blender/makesdna/DNA_screen_types.h
@@ -337,7 +337,7 @@ typedef struct ScrArea {
* It's been there for ages, name doesn't fit any more.
*/
char spacetype;
- /** ESpace_Type (SPACE_FOO). */
+ /** #eSpace_Type (SPACE_FOO). */
char butspacetype;
short butspacetype_subtype;
@@ -366,17 +366,17 @@ typedef struct ScrArea {
* changing the editor type, we try to reuse old editor data from this list.
* The first item is the active/visible one.
*/
- /** SpaceLink. */
+ /** #SpaceLink. */
ListBase spacedata;
/* NOTE: This region list is the one from the active/visible editor (first item in
* spacedata list). Use SpaceLink.regionbase if it's inactive (but only then)!
*/
- /** ARegion. */
+ /** #ARegion. */
ListBase regionbase;
- /** WmEventHandler. */
+ /** #wmEventHandler. */
ListBase handlers;
- /** AZone. */
+ /** #AZone. */
ListBase actionzones;
ScrArea_Runtime runtime;
@@ -427,17 +427,17 @@ typedef struct ARegion {
/** Callbacks for this region type. */
struct ARegionType *type;
- /** UiBlock. */
+ /** #uiBlock. */
ListBase uiblocks;
/** Panel. */
ListBase panels;
/** Stack of panel categories. */
ListBase panels_category_active;
- /** UiList. */
+ /** #uiList. */
ListBase ui_lists;
- /** UiPreview. */
+ /** #uiPreview. */
ListBase ui_previews;
- /** WmEventHandler. */
+ /** #wmEventHandler. */
ListBase handlers;
/** Panel categories runtime. */
ListBase panels_category;