Index: trunk/src/board.c =================================================================== --- trunk/src/board.c (revision 34435) +++ trunk/src/board.c (revision 34436) @@ -338,18 +338,6 @@ } } -/* sets a new via thickness */ -void pcb_board_set_via_size(rnd_coord_t Size) -{ - rnd_conf_set_design("design/via_thickness", "%$mS", Size); -} - -/* sets a new via drilling hole */ -void pcb_board_set_via_drilling_hole(rnd_coord_t Size) -{ - rnd_conf_set_design("design/via_drilling_hole", "%$mS", Size); -} - /* sets a clearance width */ void pcb_board_set_clearance(rnd_coord_t Width) { Index: trunk/src/board.h =================================================================== --- trunk/src/board.h (revision 34435) +++ trunk/src/board.h (revision 34436) @@ -151,12 +151,6 @@ /* sets a new line thickness */ void pcb_board_set_line_width(rnd_coord_t Size); -/* sets a new via thickness */ -void pcb_board_set_via_size(rnd_coord_t Size); - -/* sets a new via drilling hole */ -void pcb_board_set_via_drilling_hole(rnd_coord_t Size); - /* sets a clearance width */ void pcb_board_set_clearance(rnd_coord_t Width); Index: trunk/src/gui_act.c =================================================================== --- trunk/src/gui_act.c (revision 34435) +++ trunk/src/gui_act.c (revision 34436) @@ -564,9 +564,9 @@ case '\0': do_select:; pcb_board_set_line_width(rts->Thick); - pcb_board_set_via_size(rts->Diameter); - pcb_board_set_via_drilling_hole(rts->Hole); pcb_board_set_clearance(rts->Clearance); +TODO("pstk #21: we are not setting the proto here?!"); +TODO("pstk #21: can't we just remove these from board property as they are in the config"); break; case 'd': /* del */ res->type = FGW_INT;