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:
authorJoshua Leung <aligorith@gmail.com>2009-03-20 06:32:56 +0300
committerJoshua Leung <aligorith@gmail.com>2009-03-20 06:32:56 +0300
commitbcddeaa6999b144f94c5724a98105903e817c59b (patch)
tree82032ea5a9afcc2c7c4f67a7babbb0ce7af49ae2 /source/blender/python/intern
parent1b94cb752ca18aac122b444261e76dc63022f99f (diff)
2.5 compiles again with scons. Commented out some lines referring to code in the missing file rna_context.c
Diffstat (limited to 'source/blender/python/intern')
-rw-r--r--source/blender/python/intern/bpy_rna.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c
index 6215ab86500..ca65eee0c6f 100644
--- a/source/blender/python/intern/bpy_rna.c
+++ b/source/blender/python/intern/bpy_rna.c
@@ -642,7 +642,7 @@ static PyObject *pyrna_struct_getattro( BPy_StructRNA * self, PyObject *pyname )
if (prop) {
ret = pyrna_prop_to_py(&self->ptr, prop);
}
- else if (self->ptr.type == &RNA_Context) {
+ else if (/*self->ptr.type == &RNA_Context*/0) {
PointerRNA newptr;
ListBase newlb;