Index: obj_common.h =================================================================== --- obj_common.h (revision 30904) +++ obj_common.h (revision 30905) @@ -202,7 +202,7 @@ is not NULL, it is the source object - be smart about extobj and other attribute side effects (some of those will not be copied or will be changed); src_obj should be the objec src attributes are coming from */ -void pcb_obj_add_attribs(pcb_any_obj_t *obj, const pcb_attribute_list_t *src, pcb_any_obj_t *src_obj); +void pcb_obj_add_attribs(pcb_any_obj_t *obj, const rnd_attribute_list_t *src, pcb_any_obj_t *src_obj); /* --------------------------------------------------------------------------- * Do not change the following definitions even if they're not very @@ -220,7 +220,7 @@ pcb_parenttype_t parent_type; \ pcb_parent_t parent; \ pcb_box_t bbox_naked; \ - pcb_attribute_list_t Attributes \ + rnd_attribute_list_t Attributes \ #define PCB_ANY_PRIMITIVE_FIELDS \ PCB_ANY_OBJ_FIELDS; \ @@ -260,7 +260,7 @@ /* Update cached attributes (->term) */ -void pcb_obj_attrib_post_change(pcb_attribute_list_t *list, const char *name, const char *value); +void pcb_obj_attrib_post_change(rnd_attribute_list_t *list, const char *name, const char *value); /* Returns the first invalid character of an ID (terminal, refdes) or NULL */ const char *pcb_obj_id_invalid(const char *id); @@ -305,7 +305,7 @@ do { \ if (obj->noexport) { \ if (info->exporting) { \ - if (!obj->noexport_named || (pcb_attribute_get(&obj->Attributes, info->noexport_name) != NULL)) { \ + if (!obj->noexport_named || (rnd_attribute_get(&obj->Attributes, info->noexport_name) != NULL)) { \ inhibit; \ } \ } \