From 4d3bafd17d4d5afee1d913edae0874feb92817f5 Mon Sep 17 00:00:00 2001 From: Joseph Eagar Date: Wed, 6 Dec 2006 19:20:06 +0000 Subject: =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. :) --- source/blender/blenkernel/BKE_idprop.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenkernel/BKE_idprop.h') diff --git a/source/blender/blenkernel/BKE_idprop.h b/source/blender/blenkernel/BKE_idprop.h index 3a5e84b490e..1e82b2a3758 100644 --- a/source/blender/blenkernel/BKE_idprop.h +++ b/source/blender/blenkernel/BKE_idprop.h @@ -117,7 +117,7 @@ void *IDP_GetGroupIterator(struct IDProperty *prop); while (IDP_GroupIterNext(iter) != NULL) { . . . }*/ -void *IDP_GroupIterNext(void *vself); +IDProperty *IDP_GroupIterNext(void *vself); /*Frees the iterator pointed to at vself, only use this if iteration is stopped early; when the iterator hits the end of the list it'll automatially free itself.*/ -- cgit v1.2.3