Index: trunk/src/draw.c =================================================================== --- trunk/src/draw.c (revision 19382) +++ trunk/src/draw.c (revision 19383) @@ -68,8 +68,8 @@ pcb_bool delayed_labels_enabled = pcb_false; pcb_bool delayed_terms_enabled = pcb_false; -static void DrawEverything(pcb_draw_info_t *info); -static void DrawLayerGroup(pcb_draw_info_t *info, int, int); +static void draw_everything(pcb_draw_info_t *info); +static void pcb_draw_layer_grp(pcb_draw_info_t *info, int, int); static void pcb_draw_obj_label(pcb_layergrp_id_t gid, pcb_any_obj_t *obj); static void pcb_draw_pstk_marks(pcb_draw_info_t *info); static void pcb_draw_pstk_labels(pcb_draw_info_t *info); @@ -178,7 +178,7 @@ pcb_gui->invalidate_all(); } -static void DrawEverything_holes(pcb_draw_info_t *info, pcb_layergrp_id_t gid) +static void draw_everything_holes(pcb_draw_info_t *info, pcb_layergrp_id_t gid) { int plated, unplated; pcb_board_count_holes(PCB, &plated, &unplated, info->drawn_area); @@ -313,7 +313,7 @@ } -static void DrawEverything(pcb_draw_info_t *info) +static void draw_everything(pcb_draw_info_t *info) { char *old_silk_color; int i, ngroups, slk_len; @@ -382,7 +382,7 @@ is_current = 1; } - DrawLayerGroup(info, group, is_current); + pcb_draw_layer_grp(info, group, is_current); pcb_gui->end_layer(); } } @@ -423,7 +423,7 @@ { /* holes_after: draw holes after copper, silk and mask, to make sure it punches through everything. */ pcb_gui->set_drawing_mode(PCB_HID_COMP_RESET, pcb_draw_out.direct, info->drawn_area); pcb_gui->set_drawing_mode(PCB_HID_COMP_POSITIVE, pcb_draw_out.direct, info->drawn_area); - DrawEverything_holes(info, side_copper_grp); + draw_everything_holes(info, side_copper_grp); pcb_gui->set_drawing_mode(PCB_HID_COMP_FLUSH, pcb_draw_out.direct, info->drawn_area); } @@ -711,7 +711,7 @@ * draws one layer group. If the exporter is not a GUI, * also draws the padstacks in this layer group. */ -static void DrawLayerGroup(pcb_draw_info_t *info, int group, int is_current) +static void pcb_draw_layer_grp(pcb_draw_info_t *info, int group, int is_current) { int i; pcb_layer_id_t layernum; @@ -899,7 +899,7 @@ info.pcb = PCB; info.drawn_area = &ctx->view; info.layer = NULL; - DrawEverything(&info); + draw_everything(&info); expose_end(old_gui); } } Index: trunk/src/draw_ly_spec.c =================================================================== --- trunk/src/draw_ly_spec.c (revision 19382) +++ trunk/src/draw_ly_spec.c (revision 19383) @@ -304,7 +304,7 @@ pcb_draw_doing_assy = pcb_true; pcb_hid_set_draw_faded(pcb_draw_out.fgGC, 1); - DrawLayerGroup(info, side_group, 0); + pcb_draw_layer_grp(info, side_group, 0); pcb_hid_set_draw_faded(pcb_draw_out.fgGC, 0); /* draw package */