Index: trunk/src/tool.c =================================================================== --- trunk/src/tool.c (revision 12119) +++ trunk/src/tool.c (revision 12120) @@ -136,6 +136,11 @@ wrap_void(notify_mode, ()); } +void pcb_tool_adjust_attached_objects(void) +{ + wrap_void(adjust_attached_objects, ()); +} + #warning tool TODO: move this out to a tool plugin #include "tool_arc.h" Index: trunk/src/tool.h =================================================================== --- trunk/src/tool.h (revision 12119) +++ trunk/src/tool.h (revision 12120) @@ -35,6 +35,7 @@ /* tool implementation */ void (*notify_mode)(void); + void (*adjust_attached_objects)(void); } pcb_tool_t; vtp0_t pcb_tools;