Index: extedit.c =================================================================== --- extedit.c (revision 13372) +++ extedit.c (revision 13373) @@ -66,12 +66,7 @@ /* accept these objects for external editing */ #define EXTEDIT_TYPES (PCB_TYPE_SUBC | PCB_TYPE_ELEMENT) -/* DAD-based interactive method editor */ -static extedit_method_t *extedit_interactive(void) -{ -#warning TODO - return NULL; -} +#include "extedit_dad.c" /* HID-dependent, portable watch of child process */ typedef struct { Index: extedit_dad.c =================================================================== --- extedit_dad.c (nonexistent) +++ extedit_dad.c (revision 13373) @@ -0,0 +1,31 @@ +/* + * COPYRIGHT + * + * pcb-rnd, interactive printed circuit board design + * Copyright (C) 2017 Tibor 'Igor2' Palinkas + * + * This module, dialogs, was written and is Copyright (C) 2017 by Tibor Palinkas + * this module is also subject to the GNU GPL as described below + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + */ + +/* DAD-based interactive method editor */ +static extedit_method_t *extedit_interactive(void) +{ + + return NULL; +}