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>2006-09-24 13:21:18 +0400
committerCampbell Barton <ideasman42@gmail.com>2006-09-24 13:21:18 +0400
commit7f7f35d1ca75885eec6c062f9af00e4d0f39dbd0 (patch)
tree147cad585bb64257d265c947a5c64bdc3c77ca96 /source/blender/python/api2_2x/Group.c
parentf6a6ad5688e649a88d977c4245d6ec6a367e2feb (diff)
fixed mistakes and warnings in previous commit.
Diffstat (limited to 'source/blender/python/api2_2x/Group.c')
-rwxr-xr-xsource/blender/python/api2_2x/Group.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Group.c b/source/blender/python/api2_2x/Group.c
index 080520e3a9d..805381e1912 100755
--- a/source/blender/python/api2_2x/Group.c
+++ b/source/blender/python/api2_2x/Group.c
@@ -707,7 +707,7 @@ static PyObject *GroupObSeq_getIter( BPy_GroupObSeq * self )
self->iter = self->bpygroup->group->gobject.first;
return EXPP_incr_ret ( (PyObject *) self );
} else {
- return GroupObSeq_CreatePyObject(self->bpygroup->group, self->bpygroup->group->gobject.first);
+ return GroupObSeq_CreatePyObject(self->bpygroup, self->bpygroup->group->gobject.first);
}
}