Index: select_act.c =================================================================== --- select_act.c (revision 30911) +++ select_act.c (revision 30912) @@ -96,7 +96,7 @@ /* all objects in block */ case F_Block: { - pcb_box_t box; + rnd_box_t box; box.X1 = MIN(pcb_crosshair.AttachedBox.Point1.X, pcb_crosshair.AttachedBox.Point2.X); box.Y1 = MIN(pcb_crosshair.AttachedBox.Point1.Y, pcb_crosshair.AttachedBox.Point2.Y); @@ -116,7 +116,7 @@ /* select all visible(?) objects */ case F_All: { - pcb_box_t box; + rnd_box_t box; box.X1 = -PCB_MAX_COORD; box.Y1 = -PCB_MAX_COORD; @@ -131,7 +131,7 @@ case F_Invert: { - pcb_box_t box; + rnd_box_t box; box.X1 = -PCB_MAX_COORD; box.Y1 = -PCB_MAX_COORD; @@ -197,7 +197,7 @@ /* all objects in block */ case F_Block: { - pcb_box_t box; + rnd_box_t box; box.X1 = MIN(pcb_crosshair.AttachedBox.Point1.X, pcb_crosshair.AttachedBox.Point2.X); box.Y1 = MIN(pcb_crosshair.AttachedBox.Point1.Y, pcb_crosshair.AttachedBox.Point2.Y); @@ -216,7 +216,7 @@ /* unselect all visible objects */ case F_All: { - pcb_box_t box; + rnd_box_t box; box.X1 = -PCB_MAX_COORD; box.Y1 = -PCB_MAX_COORD;