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-05-16 06:54:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-05-16 06:54:32 +0300
commit4ba7d4ca9d7236e13fb89dea5d89de3de1494719 (patch)
treed7aad666e594ce2a4c17ecd954d309d1a204bc59
parent2896ce7bc793908f2ee054c2c5e1f58e9c6e8dce (diff)
Cleanup: remove unused identifiers
-rw-r--r--source/blender/editors/object/object_add.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c
index 3af05970038..a7495b516dc 100644
--- a/source/blender/editors/object/object_add.c
+++ b/source/blender/editors/object/object_add.c
@@ -161,11 +161,11 @@ static EnumPropertyItem lightprobe_type_items[] = {
{0, NULL, 0, NULL, NULL},
};
-enum ObjectAlign {
- ALIGN_WORLD,
+enum {
+ ALIGN_WORLD = 0,
ALIGN_VIEW,
ALIGN_CURSOR,
-} ALIGN_OPTIONS;
+};
static const EnumPropertyItem align_options[] = {
{ALIGN_WORLD, "WORLD", 0, "World", "Align the new object to the world"},