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>2013-03-22 09:46:39 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-03-22 09:46:39 +0400
commit75a5e239d765a1d580091ae35515f5b49db3ab90 (patch)
tree683eaeab2fb2013af714af5715e28e6d182c4756 /source/blender/editors/space_node/node_intern.h
parenta79e10157dc7a1c8a102bf88f236d325ecdd8d80 (diff)
correct enums which were in fact variables defined in headers.
Diffstat (limited to 'source/blender/editors/space_node/node_intern.h')
-rw-r--r--source/blender/editors/space_node/node_intern.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_node/node_intern.h b/source/blender/editors/space_node/node_intern.h
index 2359a237b25..2f6090d67ce 100644
--- a/source/blender/editors/space_node/node_intern.h
+++ b/source/blender/editors/space_node/node_intern.h
@@ -237,7 +237,7 @@ extern const char *node_context_dir[];
#define NODE_LINK_RESOL 12
// XXX button events (butspace)
-enum {
+enum eNodeSpace_ButEvents {
B_NOP = 0,
B_REDR = 1,
B_NODE_USEMAT,
@@ -254,6 +254,6 @@ enum {
B_MATPRV,
B_NODE_LOADIMAGE,
B_NODE_SETIMAGE,
-} eNodeSpace_ButEvents;
+};
#endif /* __NODE_INTERN_H__ */