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:
authorJoseph Eagar <joeedh@gmail.com>2006-12-06 22:20:06 +0300
committerJoseph Eagar <joeedh@gmail.com>2006-12-06 22:20:06 +0300
commit4d3bafd17d4d5afee1d913edae0874feb92817f5 (patch)
treeea69006e8258e91244fbd3a8db422415dd81b67d /source/blender/blenkernel/intern/idprop.c
parent383f25f3daec816fb6fcc27374974d18db66510e (diff)
=IDProperties C-API tiny update=
IDP_GroupIterNext returned void* rather then IDProperty*. Made it IDProperty*. BTW, any people out there interested in using IDProperties from the C side, feel free to email me comments and (especially!) file bugreports assigned to me in the tracker. :)
Diffstat (limited to 'source/blender/blenkernel/intern/idprop.c')
-rw-r--r--source/blender/blenkernel/intern/idprop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/idprop.c b/source/blender/blenkernel/intern/idprop.c
index 0bcb6a87ba3..d59fdf28c83 100644
--- a/source/blender/blenkernel/intern/idprop.c
+++ b/source/blender/blenkernel/intern/idprop.c
@@ -210,7 +210,7 @@ void *IDP_GetGroupIterator(IDProperty *prop)
return (void*) iter;
}
-void *IDP_GroupIterNext(void *vself)
+IDProperty *IDP_GroupIterNext(void *vself)
{
IDPIter *self = (IDPIter*) vself;
Link *next = (Link*) self->next;