Index: action.c =================================================================== --- action.c (revision 30980) +++ action.c (revision 30981) @@ -48,7 +48,7 @@ RND_PCB_ACT_CONVARG(1, FGW_KEYWORD, AutoRoute, op = fgw_keyword(&argv[1])); - pcb_hid_busy(PCB, 1); + rnd_hid_busy(PCB, 1); switch(op) { case F_AllRats: case F_All: @@ -64,7 +64,7 @@ RND_ACT_FAIL(AutoRoute); return 1; } - pcb_hid_busy(PCB, 0); + rnd_hid_busy(PCB, 0); RND_ACT_IRES(0); return 0; } Index: autoroute.c =================================================================== --- autoroute.c (revision 30980) +++ autoroute.c (revision 30981) @@ -4375,7 +4375,7 @@ * to route a net from a particular starting point, but perfectly * able to route it from some other. */ percent = calculate_progress(this_heap_item, this_heap_size, &ras); - request_cancel = pcb_hid_progress(percent * 100., 100, "Autorouting tracks"); + request_cancel = rnd_hid_progress(percent * 100., 100, "Autorouting tracks"); if (request_cancel) { ras.total_nets_routed = 0; ras.conflict_subnets = 0; @@ -4746,7 +4746,7 @@ /* auto-route all nets */ changed = (RouteAll(rd).total_nets_routed > 0) || changed; donerouting: - pcb_hid_progress(0, 0, NULL); + rnd_hid_progress(0, 0, NULL); if (conf_core.editor.live_routing) { int i; rnd_rnd_box_t big = { 0, 0, RND_MAX_COORD, RND_MAX_COORD }; @@ -4774,7 +4774,7 @@ pcb_undo_inc_serial(); - pcb_hid_redraw(PCB); + rnd_hid_redraw(PCB); } #if defined (ROUTE_DEBUG) aabort = 0;