style cleanup: format 'for' loop macros the same as for loops, some renaming to BLI_array macros.

This commit is contained in:
2012-04-28 15:14:16 +00:00
parent 887d1533f8
commit ef054e165c
75 changed files with 333 additions and 388 deletions

View File

@@ -139,7 +139,7 @@ int uiDefAutoButsRNA(uiLayout *layout, PointerRNA *ptr, int (*check_prop)(Pointe
assert(ELEM3(label_align, '\0', 'H', 'V'));
RNA_STRUCT_BEGIN(ptr, prop) {
RNA_STRUCT_BEGIN (ptr, prop) {
flag = RNA_property_flag(prop);
if (flag & PROP_HIDDEN || (check_prop && check_prop(ptr, prop) == FALSE))
continue;