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:
authorBastien Montagne <montagne29@wanadoo.fr>2013-02-08 19:16:57 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2013-02-08 19:16:57 +0400
commit95b28a65f366c4a1f571f35dabd79edaa94cfe51 (patch)
tree5645d8dce3c7ab252844ba87c0d61dacb1205758 /source/blender/makesrna/RNA_types.h
parente6cd9ea087d7bc5e027d67fc328014b604fbe25d (diff)
Cleanup: happily remove no-more-used PY_TRANSLATE RNA prop flag, and related code (just realized that flag value was wrong, probably own typo in a previous commit :/ ).
That "trick" was nice when introduced, but it became kind of a pita since we added translation contexts...
Diffstat (limited to 'source/blender/makesrna/RNA_types.h')
-rw-r--r--source/blender/makesrna/RNA_types.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/source/blender/makesrna/RNA_types.h b/source/blender/makesrna/RNA_types.h
index 300134fc8b6..d3cf7dc8095 100644
--- a/source/blender/makesrna/RNA_types.h
+++ b/source/blender/makesrna/RNA_types.h
@@ -143,7 +143,7 @@ typedef enum PropertySubType {
} PropertySubType;
/* Make sure enums are updated with thses */
-/* HIGHEST FLAG IN USE: 1 << 29 */
+/* HIGHEST FLAG IN USE: 1 << 28 */
typedef enum PropertyFlag {
/* editable means the property is editable in the user
* interface, properties are editable by default except
@@ -200,11 +200,6 @@ typedef enum PropertyFlag {
*/
PROP_ENUM_FLAG = (1 << 21),
- /* A string which should be translated when converting from py string to RNA prop.
- * Should only be used in some functions' properties (currently only "text" one of funcs in UI API).
- */
- PROP_STRING_PY_TRANSLATE = (1 << 28),
-
/* need context for update function */
PROP_CONTEXT_UPDATE = (1 << 22),
PROP_CONTEXT_PROPERTY_UPDATE = (1 << 22) | (1 << 27),