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>2012-09-10 11:03:30 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-09-10 11:03:30 +0400
commitccaf475422460bb10870689f6b6ddd09c94aa2af (patch)
tree9da101dcbd34c8824a041b4e123631dd70fc03cd /source/blender/editors/include
parentb1ff5651fbd8e392c616fba55d3fb4455fe9d3a7 (diff)
code cleanup: use typedef'd enum for block bounds types.
Diffstat (limited to 'source/blender/editors/include')
-rw-r--r--source/blender/editors/include/UI_interface.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/include/UI_interface.h b/source/blender/editors/include/UI_interface.h
index 2b4ee325e46..06fb3b9f7d3 100644
--- a/source/blender/editors/include/UI_interface.h
+++ b/source/blender/editors/include/UI_interface.h
@@ -397,7 +397,8 @@ void uiBlockBeginAlign(uiBlock *block);
void uiBlockEndAlign(uiBlock *block);
/* block bounds/position calculation */
-enum {
+typedef enum {
+ UI_BLOCK_BOUNDS_NONE = 0,
UI_BLOCK_BOUNDS = 1,
UI_BLOCK_BOUNDS_TEXT,
UI_BLOCK_BOUNDS_POPUP_MOUSE,