Index: select_act.c =================================================================== --- select_act.c (revision 4760) +++ select_act.c (revision 4761) @@ -177,7 +177,7 @@ /* all objects in block */ case F_Block: { - BoxType box; + pcb_box_t box; box.X1 = MIN(Crosshair.AttachedBox.Point1.X, Crosshair.AttachedBox.Point2.X); box.Y1 = MIN(Crosshair.AttachedBox.Point1.Y, Crosshair.AttachedBox.Point2.Y); @@ -196,7 +196,7 @@ /* select all visible objects */ case F_All: { - BoxType box; + pcb_box_t box; box.X1 = -MAX_COORD; box.Y1 = -MAX_COORD; @@ -329,7 +329,7 @@ /* all objects in block */ case F_Block: { - BoxType box; + pcb_box_t box; box.X1 = MIN(Crosshair.AttachedBox.Point1.X, Crosshair.AttachedBox.Point2.X); box.Y1 = MIN(Crosshair.AttachedBox.Point1.Y, Crosshair.AttachedBox.Point2.Y); @@ -348,7 +348,7 @@ /* unselect all visible objects */ case F_All: { - BoxType box; + pcb_box_t box; box.X1 = -MAX_COORD; box.Y1 = -MAX_COORD;