Index: trunk/src/layer_grp.c =================================================================== --- trunk/src/layer_grp.c (revision 29696) +++ trunk/src/layer_grp.c (revision 29697) @@ -167,7 +167,7 @@ ng = pcb_layergrp_insert_after(pcb, gid); make_substrate(pcb, ng); after = ng - pcb->LayerGroups.grp; - if (undoable) pcb_layergrp_undoable_create(ng); + if (undoable) pcb_layergrp_undoable_created(ng); } else after = gid; @@ -181,7 +181,7 @@ ng->purpi = og->purpi; ng->valid = ng->open = ng->vis = 1; pcb_layergrp_setup(ng, pcb); - if (undoable) pcb_layergrp_undoable_create(ng); + if (undoable) pcb_layergrp_undoable_created(ng); inhibit_notify--; NOTIFY(pcb); @@ -640,7 +640,7 @@ return 0; } -void pcb_layergrp_undoable_create(pcb_layergrp_t *grp) +void pcb_layergrp_undoable_created(pcb_layergrp_t *grp) { pcb_board_t *pcb = grp->parent.board; undo_layergrp_del_t *r; Index: trunk/src/layer_grp.h =================================================================== --- trunk/src/layer_grp.h (revision 29696) +++ trunk/src/layer_grp.h (revision 29697) @@ -198,7 +198,7 @@ void pcb_layergrp_create_missing_substrate(pcb_board_t *pcb); /* Call this after creating grp to add the creation to the undo list */ -void pcb_layergrp_undoable_create(pcb_layergrp_t *grp); +void pcb_layergrp_undoable_created(pcb_layergrp_t *grp); /********* OBSOLETE functions, do not use in new code *********/