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-10-03 05:40:19 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-10-04 01:28:33 +0300
commit57272d598d2c64932b3ae26991063fce9fe52a90 (patch)
tree1a64ea1d4591824ce937731db579e00f0c2b47d8 /source/blender/makesdna/DNA_screen_types.h
parentee79bde54dfbaf9914224a32dae090c326b5998b (diff)
Cleanup: rename eRegionType -> eRegion_Type
Match eSpace_Type.
Diffstat (limited to 'source/blender/makesdna/DNA_screen_types.h')
-rw-r--r--source/blender/makesdna/DNA_screen_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_screen_types.h b/source/blender/makesdna/DNA_screen_types.h
index d5b7458ae7b..f557890e3e8 100644
--- a/source/blender/makesdna/DNA_screen_types.h
+++ b/source/blender/makesdna/DNA_screen_types.h
@@ -650,7 +650,7 @@ enum {
/* regiontype, first two are the default set */
/* Do NOT change order, append on end. Types are hardcoded needed */
-typedef enum eRegionType {
+typedef enum eRegion_Type {
RGN_TYPE_WINDOW = 0,
RGN_TYPE_HEADER = 1,
RGN_TYPE_CHANNELS = 2,
@@ -668,7 +668,7 @@ typedef enum eRegionType {
RGN_TYPE_TOOL_HEADER = 12,
#define RGN_TYPE_LEN (RGN_TYPE_TOOL_HEADER + 1)
-} eRegionType;
+} eRegion_Type;
/* use for function args */
#define RGN_TYPE_ANY -1