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-10-16 09:29:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-10-16 09:29:28 +0400
commit089d0ad8f9d227b3cadd56184578e163ac5589f8 (patch)
tree44ba84d1ec1946927c1dbcfb4a66bc39b07af1a7 /source/blender/python/generic/idprop_py_api.c
parentf12ac5b23f27882446ea6620216d9be863183e50 (diff)
add IDP_FreeFromGroup(), replaces IDP_RemFromGroup(), IDP_FreeProperty(), MEM_freeN().
Diffstat (limited to 'source/blender/python/generic/idprop_py_api.c')
-rw-r--r--source/blender/python/generic/idprop_py_api.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/source/blender/python/generic/idprop_py_api.c b/source/blender/python/generic/idprop_py_api.c
index f7ed5fec891..92e9f49769d 100644
--- a/source/blender/python/generic/idprop_py_api.c
+++ b/source/blender/python/generic/idprop_py_api.c
@@ -496,9 +496,7 @@ int BPy_Wrap_SetMapItem(IDProperty *prop, PyObject *key, PyObject *val)
if (val == NULL) { /* del idprop[key] */
IDProperty *pkey = IDP_GetPropertyFromGroup(prop, _PyUnicode_AsString(key));
if (pkey) {
- IDP_RemFromGroup(prop, pkey);
- IDP_FreeProperty(pkey);
- MEM_freeN(pkey);
+ IDP_FreeFromGroup(prop, pkey);
return 0;
}
else {
@@ -670,7 +668,7 @@ static PyObject *BPy_IDGroup_Pop(BPy_IDProperty *self, PyObject *value)
return NULL;
}
- IDP_RemFromGroup(self->prop, idprop);
+ IDP_RemoveFromGroup(self->prop, idprop);
return pyform;
}