Index: dlg.c =================================================================== --- dlg.c (revision 31010) +++ dlg.c (revision 31011) @@ -315,7 +315,7 @@ free(info); RND_DAD_DEFSIZE(ctx->dlg, 200, 400); - RND_DAD_NEW("drc_query_rule_edit", ctx->dlg, "drc_query: rule editor", ctx, pcb_false, rule_edit_close_cb); + RND_DAD_NEW("drc_query_rule_edit", ctx->dlg, "drc_query: rule editor", ctx, rnd_false, rule_edit_close_cb); drc_rule_pcb2dlg(ctx); @@ -619,7 +619,7 @@ drc_rlist_ctx.active = 1; RND_DAD_DEFSIZE(drc_rlist_ctx.dlg, 550, 400); - RND_DAD_NEW("drc_query_list", drc_rlist_ctx.dlg, "drc_query: list of rules", &drc_rlist_ctx, pcb_false, drc_rlist_close_cb); + RND_DAD_NEW("drc_query_list", drc_rlist_ctx.dlg, "drc_query: list of rules", &drc_rlist_ctx, rnd_false, drc_rlist_close_cb); RND_DAD_SET_VALUE(drc_rlist_ctx.dlg_hid_ctx, wpane, dbl, 0.5); drc_rlist_pcb2dlg(); return 0; Index: drc_query.c =================================================================== --- drc_query.c (revision 31010) +++ drc_query.c (revision 31011) @@ -262,13 +262,13 @@ if (rnd_conf_get_field(path) == NULL) { const char *sdesc; rnd_conf_native_t *nat; - pcb_bool_t *b; + rnd_bool_t *b; lht_node_t *ndesc; ndesc = lht_dom_hash_get(nd, "desc"); if ((ndesc != NULL) && (ndesc->type == LHT_TEXT)) sdesc = ndesc->data.text.value; - b = calloc(sizeof(pcb_bool_t), 1); + b = calloc(sizeof(rnd_bool_t), 1); nat = rnd_conf_reg_field_(b, 1, RND_CFN_BOOLEAN, path, rnd_strdup(sdesc), 0); if (nat == NULL) { free(b);