Index: constraint_gui.c =================================================================== --- constraint_gui.c (revision 26976) +++ constraint_gui.c (revision 26977) @@ -190,7 +190,7 @@ cnstgui_ctx.inhibit_confchg++; nv = (cnstgui_ctx.dlg[cnstgui_ctx.alldir].val.lng) ? "1" : "0"; - conf_set(CFR_DESIGN, "editor/all_direction_lines", -1, nv, POL_OVERWRITE); + pcb_conf_set(CFR_DESIGN, "editor/all_direction_lines", -1, nv, POL_OVERWRITE); cnstgui_ctx.inhibit_confchg--; } Index: ddraft.c =================================================================== --- ddraft.c (revision 26976) +++ ddraft.c (revision 26977) @@ -495,9 +495,9 @@ confid = conf_hid_reg(ddraft_cookie, NULL); - cn = conf_get_field("editor/all_direction_lines"); + cn = pcb_conf_get_field("editor/all_direction_lines"); conf_hid_set_cb(cn, confid, &conf_cbs_adl); - cn = conf_get_field("editor/mode"); + cn = pcb_conf_get_field("editor/mode"); conf_hid_set_cb(cn, confid, &conf_cbs_mode); return 0; }