Index: operation.h =================================================================== --- operation.h (revision 30969) +++ operation.h (revision 30970) @@ -58,7 +58,7 @@ pcb_board_t *pcb; int is_primary; /* whether the primary parameter should be changed */ rnd_bool is_absolute; - pcb_angle_t value; /* same as above, but for angles */ + rnd_angle_t value; /* same as above, but for angles */ } pcb_opctx_chgangle_t; typedef struct { @@ -147,8 +147,8 @@ void *(*Text)(pcb_opctx_t *ctx, pcb_layer_t *, pcb_text_t *); void *(*Polygon)(pcb_opctx_t *ctx, pcb_layer_t *, pcb_poly_t *); /*5*/ - void *(*LinePoint)(pcb_opctx_t *ctx, pcb_layer_t *, pcb_line_t *, pcb_point_t *); - void *(*Point)(pcb_opctx_t *ctx, pcb_layer_t *, pcb_poly_t *, pcb_point_t *); + void *(*LinePoint)(pcb_opctx_t *ctx, pcb_layer_t *, pcb_line_t *, rnd_point_t *); + void *(*Point)(pcb_opctx_t *ctx, pcb_layer_t *, pcb_poly_t *, rnd_point_t *); void *(*Arc)(pcb_opctx_t *ctx, pcb_layer_t *, pcb_arc_t *); void *(*Gfx)(pcb_opctx_t *ctx, pcb_layer_t *, pcb_gfx_t *); void *(*Rat)(pcb_opctx_t *ctx, pcb_rat_t *);