RNA: ID properties were not being shown as RNA properties anymore, fixed.

Python: fix two warnings (initialize to NULL).
This commit is contained in:
2009-05-20 09:17:21 +00:00
parent a1cc5ef8eb
commit d80911b867
4 changed files with 7 additions and 4 deletions

View File

@@ -1092,6 +1092,7 @@ PyObject *pyrna_param_to_py(PointerRNA *ptr, PropertyRNA *prop, void *data)
case PROP_COLLECTION:
/* XXX not supported yet
* ret = pyrna_prop_CreatePyObject(ptr, prop); */
ret = NULL;
break;
default:
PyErr_Format(PyExc_AttributeError, "RNA Error: unknown type \"%d\" (pyrna_param_to_py)", type);