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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2010-01-22 13:58:02 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2010-01-22 13:58:02 +0300
commit00318eaa2eedfd0f1b8af12bd4a7f664b6ef1b89 (patch)
tree102c51718f741076319070edc2f5bb6babe44d0b /source/blender/makesrna/RNA_types.h
parent0c2d03e69f427a3b2285c5b26267004befbcc2a9 (diff)
RNA: added option to pass self ID to RNA functions.
Diffstat (limited to 'source/blender/makesrna/RNA_types.h')
-rw-r--r--source/blender/makesrna/RNA_types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesrna/RNA_types.h b/source/blender/makesrna/RNA_types.h
index 913c387c824..ebb0a0b4c51 100644
--- a/source/blender/makesrna/RNA_types.h
+++ b/source/blender/makesrna/RNA_types.h
@@ -266,6 +266,7 @@ typedef enum FunctionFlag {
FUNC_NO_SELF = 1, /* for static functions */
FUNC_USE_CONTEXT = 2,
FUNC_USE_REPORTS = 4,
+ FUNC_USE_SELF_ID = 2048,
/* registering */
FUNC_REGISTER = 8,