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
This commit is contained in:
2013-05-08 12:58:11 +00:00
parent df664fa6d5
commit a9fb183901
25 changed files with 43 additions and 43 deletions

View File

@@ -1018,7 +1018,7 @@ void free_sss(Render *re)
if (re->sss_hash) {
GHashIterator *it= BLI_ghashIterator_new(re->sss_hash);
while (BLI_ghashIterator_notDone(it)) {
while (!BLI_ghashIterator_done(it)) {
sss_free_tree(BLI_ghashIterator_getValue(it));
BLI_ghashIterator_step(it);
}