Index: constraint_gui.c =================================================================== --- constraint_gui.c (revision 30948) +++ constraint_gui.c (revision 30949) @@ -190,7 +190,7 @@ cnstgui_ctx.inhibit_confchg++; nv = (cnstgui_ctx.dlg[cnstgui_ctx.alldir].val.lng) ? "1" : "0"; - pcb_conf_set(RND_CFR_DESIGN, "editor/all_direction_lines", -1, nv, RND_POL_OVERWRITE); + rnd_conf_set(RND_CFR_DESIGN, "editor/all_direction_lines", -1, nv, RND_POL_OVERWRITE); cnstgui_ctx.inhibit_confchg--; } Index: ddraft.c =================================================================== --- ddraft.c (revision 30948) +++ ddraft.c (revision 30949) @@ -560,9 +560,9 @@ pcb_ddraft_tool = pcb_tool_reg(&tool_ddraft, ddraft_cookie); confid = pcb_conf_hid_reg(ddraft_cookie, NULL); - cn = pcb_conf_get_field("editor/all_direction_lines"); + cn = rnd_conf_get_field("editor/all_direction_lines"); pcb_conf_hid_set_cb(cn, confid, &conf_cbs_adl); - cn = pcb_conf_get_field("editor/mode"); + cn = rnd_conf_get_field("editor/mode"); pcb_conf_hid_set_cb(cn, confid, &conf_cbs_mode); return 0; }