code cleanup: use TRUE/FALSE rather then 1/0 for better readability, also replace do prefix with do_ for bool vars.

This commit is contained in:
2012-05-19 13:28:19 +00:00
parent 2f5173887e
commit af3e348430
116 changed files with 545 additions and 526 deletions

View File

@@ -133,7 +133,7 @@ bNode *node_group_make_from_selected(bNodeTree *ntree)
DO_MINMAX2((&node->locx), min, max);
totnode++;
}
node->done= 0;
node->done = FALSE;
}
if (totnode==0) return NULL;