(svn r3181) -Bracing

-Indentation
-Whitespace
-DeMorgan's Law
-Test with NULL or 0 for non-booleans
-'\0' instead of 0 for chars
-Remove redundantly redundant comments (like DoFoo(); // Do foo)
-Join multiple short lines with a single statement
-Split single lines with multiple statements
-Avoid assignments in if
This commit is contained in:
tron
2005-11-14 19:48:04 +00:00
parent d8b56c123e
commit f7abff5f96
63 changed files with 1984 additions and 2359 deletions

View File

@@ -209,24 +209,23 @@ static void TerraformToolbWndProc(Window *w, WindowEvent *e)
case WE_PAINT:
DrawWindowWidgets(w);
break;
case WE_CLICK:
if (e->click.widget >= 4) {
_terraform_button_proc[e->click.widget - 4](w);
}
if (e->click.widget >= 4) _terraform_button_proc[e->click.widget - 4](w);
break;
case WE_KEYPRESS:
{
int i;
case WE_KEYPRESS: {
uint i;
for(i=0; i!=lengthof(_terraform_keycodes); i++)
for (i = 0; i != lengthof(_terraform_keycodes); i++) {
if (e->keypress.keycode == _terraform_keycodes[i]) {
e->keypress.cont = false;
_terraform_button_proc[i](w);
break;
}
}
}
break;
}
case WE_PLACE_OBJ:
_place_proc(e->place.tile);