rename RNA_property_is_set() --> RNA_struct_property_is_set() in preperation to add a second version of the function which takes the property rather then its name.

This commit is contained in:
2012-01-11 16:32:12 +00:00
parent e26cd10b7a
commit f66f33cefc
34 changed files with 121 additions and 121 deletions

View File

@@ -3070,7 +3070,7 @@ static PyObject *pyrna_struct_is_property_set(BPy_StructRNA *self, PyObject *arg
}
/* double property lookup, could speed up */
/* return PyBool_FromLong(RNA_property_is_set(&self->ptr, name)); */
/* return PyBool_FromLong(RNA_struct_property_is_set(&self->ptr, name)); */
if (RNA_property_flag(prop) & PROP_IDPROPERTY) {
IDProperty *group = RNA_struct_idprops(&self->ptr, 0);
if (group) {