Index: action.c =================================================================== --- action.c (revision 30980) +++ action.c (revision 30981) @@ -44,12 +44,12 @@ /* DOC: autoplaceselected */ static fgw_error_t pcb_act_AutoPlaceSelected(fgw_arg_t *res, int argc, fgw_arg_t *argv) { - pcb_hid_busy(PCB, 1); - if (pcb_hid_message_box(RND_ACT_HIDLIB, "question", "Autoplace start", "Auto-placement can NOT be undone.\nDo you want to continue anyway?", "no", 0, "yes", 1, NULL) == 1) { + rnd_hid_busy(PCB, 1); + if (rnd_hid_message_box(RND_ACT_HIDLIB, "question", "Autoplace start", "Auto-placement can NOT be undone.\nDo you want to continue anyway?", "no", 0, "yes", 1, NULL) == 1) { if (AutoPlaceSelected()) pcb_board_set_changed_flag(pcb_true); } - pcb_hid_busy(PCB, 0); + rnd_hid_busy(PCB, 0); RND_ACT_IRES(0); return 0; } Index: autoplace.c =================================================================== --- autoplace.c (revision 30980) +++ autoplace.c (revision 30981) @@ -793,7 +793,7 @@ if (good_moves >= good_move_cutoff || moves >= move_cutoff) { printf("END OF STAGE: COST %.0f\t" "GOOD_MOVES %d\tMOVES %d\t" "T: %.1f\n", C0, good_moves, moves, T); pcb_draw(); - if (pcb_hid_progress(C00-T, C00, "Optimizing the placement...")) + if (rnd_hid_progress(C00-T, C00, "Optimizing the placement...")) break; /* is this the end? */ if (T < 5 || good_moves < moves / CostParameter.good_ratio) @@ -808,11 +808,11 @@ changed = (steps > 0); } done: - pcb_hid_progress(0, 0, NULL); + rnd_hid_progress(0, 0, NULL); if (changed) { pcb_rats_destroy(pcb_false); pcb_net_add_all_rats(PCB, PCB_RATACC_PRECISE); - pcb_hid_redraw(PCB); + rnd_hid_redraw(PCB); } vtp0_uninit(&Selected); return changed;