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>2014-02-08 22:51:22 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-02-08 22:53:18 +0400
commitcb685c46bcac9477de54da0900a65652184f7472 (patch)
tree80ccc1c8cf6a4b977874b31f2a37d4198c71ac5a /source/blender/makesrna/RNA_types.h
parentda33a557bcfbdc44d9503053bde47f235c97dc80 (diff)
RNA API: remove unused PROP_NEVER_CLAMP flag
Diffstat (limited to 'source/blender/makesrna/RNA_types.h')
-rw-r--r--source/blender/makesrna/RNA_types.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/source/blender/makesrna/RNA_types.h b/source/blender/makesrna/RNA_types.h
index a760d59b0e1..26b107bf610 100644
--- a/source/blender/makesrna/RNA_types.h
+++ b/source/blender/makesrna/RNA_types.h
@@ -218,12 +218,6 @@ typedef enum PropertyFlag {
* most common case is functions that return arrays where the array */
PROP_THICK_WRAP = (1 << 23),
- /* Reject values outside limits, use for python api only so far
- * this is for use when silently clamping string length will give
- * bad behavior later. Could also enforce this for INT's and other types.
- * note: currently no support for function arguments or non utf8 paths (filepaths) */
- PROP_NEVER_CLAMP = (1 << 26),
-
/* internal flags */
PROP_BUILTIN = (1 << 7),
PROP_EXPORT = (1 << 8),