Index: rats_act.c =================================================================== --- rats_act.c (revision 4869) +++ rats_act.c (revision 4870) @@ -157,7 +157,7 @@ } case F_ResetLinesAndPolygons: - if (ResetFoundLinesAndPolygons(pcb_true)) { + if (pcb_reset_found_lines_polys(pcb_true)) { IncrementUndoSerialNumber(); pcb_draw(); } @@ -164,7 +164,7 @@ break; case F_ResetPinsViasAndPads: - if (ResetFoundPinsViasAndPads(pcb_true)) { + if (pcb_reset_found_pins_vias_pads(pcb_true)) { IncrementUndoSerialNumber(); pcb_draw(); } @@ -171,7 +171,7 @@ break; case F_Reset: - if (ResetConnections(pcb_true)) { + if (pcb_reset_conns(pcb_true)) { IncrementUndoSerialNumber(); pcb_draw(); }