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>2011-02-25 05:27:54 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-02-25 05:27:54 +0300
commit18c7354bd24359bfabc9022281b220c1cc2d6b88 (patch)
tree7ca0bd471151b2402cf5188ab34789a3e8cd5c57 /source/blender
parent4b4281f2e215f97092baf105a7304a9b775a372f (diff)
remove warning left in by mistake and comment unused function.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/python/generic/IDProp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/python/generic/IDProp.c b/source/blender/python/generic/IDProp.c
index b9bf0dac09b..a83359c31f7 100644
--- a/source/blender/python/generic/IDProp.c
+++ b/source/blender/python/generic/IDProp.c
@@ -115,6 +115,7 @@ PyObject *BPy_IDGroup_WrapData( ID *id, IDProperty *prop )
Py_RETURN_NONE;
}
+#if 0 /* UNUSED, currenly assignment overwrites into new properties, rather then setting in-place */
static int BPy_IDGroup_SetData(BPy_IDProperty *self, IDProperty *prop, PyObject *value)
{
switch (prop->type) {
@@ -183,6 +184,7 @@ static int BPy_IDGroup_SetData(BPy_IDProperty *self, IDProperty *prop, PyObject
}
return 0;
}
+#endif
static PyObject *BPy_IDGroup_GetName(BPy_IDProperty *self, void *UNUSED(closure))
{