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-02-05 09:09:19 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-02-05 09:09:19 +0400
commitec97183876faa5b18debc75fb64b024da41f9012 (patch)
tree238f7cb1e9493f44bde9a9e410baef5d91ed3125 /source/blender/python/intern/bpy_operator_wrap.c
parenta8601a5702b5b510af46459ed7a36f65a3e4755d (diff)
add python api docstring for 'bpy.types.Operator.bl_property'
Diffstat (limited to 'source/blender/python/intern/bpy_operator_wrap.c')
-rw-r--r--source/blender/python/intern/bpy_operator_wrap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_operator_wrap.c b/source/blender/python/intern/bpy_operator_wrap.c
index e13dc6ecddd..9d92ff51213 100644
--- a/source/blender/python/intern/bpy_operator_wrap.c
+++ b/source/blender/python/intern/bpy_operator_wrap.c
@@ -88,12 +88,12 @@ static void operator_properties_init(wmOperatorType *ot)
}
}
else {
+ /* fallback to hard-coded string (pre 2.66, could be deprecated) */
prop_id = "type";
prop_raise_error = false;
}
if (prop_id) {
- /* fallback to hard-coded string */
PointerRNA ptr;
PropertyRNA *prop;