(svn r17169) -Codechange: apply coding style to some for statements

This commit is contained in:
smatz
2009-08-14 17:14:04 +00:00
parent c5533ae470
commit 2d3ddab7ca
4 changed files with 4 additions and 4 deletions

View File

@@ -2320,7 +2320,7 @@ bool CompareWidgetArrays(const Widget *orig, const Widget *gen, bool report)
}
bool same = true;
for(int idx = 0; ; idx++) {
for (int idx = 0; ; idx++) {
const Widget *ow = orig + idx;
const Widget *gw = gen + idx;