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/BKE_idprop.h
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/BKE_idprop.h')
-rw-r--r--source/blender/blenkernel/BKE_idprop.h2
1 files changed, 1 insertions, 1 deletions
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.*/