From a9fb183901f7d64bf5435a28bdb454b1f800cf6a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 8 May 2013 12:58:11 +0000 Subject: rename BLI_ghashIterator_notDone() -> BLI_ghashIterator_done() was renamed fairly recently but other similar iterators not negated like this, would prefer to keep it as it was --- source/blender/editors/armature/editarmature_sketch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/armature/editarmature_sketch.c') diff --git a/source/blender/editors/armature/editarmature_sketch.c b/source/blender/editors/armature/editarmature_sketch.c index eb76c460b51..8ae1b9557ee 100644 --- a/source/blender/editors/armature/editarmature_sketch.c +++ b/source/blender/editors/armature/editarmature_sketch.c @@ -183,7 +183,7 @@ const char *BIF_listTemplates(const bContext *UNUSED(C)) BLI_ghashIterator_init(&ghi, TEMPLATES_HASH); - while (BLI_ghashIterator_notDone(&ghi)) { + while (!BLI_ghashIterator_done(&ghi)) { Object *ob = BLI_ghashIterator_getValue(&ghi); int key = GET_INT_FROM_POINTER(BLI_ghashIterator_getKey(&ghi)); @@ -203,7 +203,7 @@ int BIF_currentTemplate(const bContext *C) GHashIterator ghi; BLI_ghashIterator_init(&ghi, TEMPLATES_HASH); - while (BLI_ghashIterator_notDone(&ghi)) { + while (!BLI_ghashIterator_done(&ghi)) { Object *ob = BLI_ghashIterator_getValue(&ghi); int key = GET_INT_FROM_POINTER(BLI_ghashIterator_getKey(&ghi)); -- cgit v1.2.3