CADSTAR importer: Parse missing SIGNALREF ATTROWNER
Fixes https://gitlab.com/kicad/code/kicad/-/issues/7068
This commit is contained in:
parent
f0b11896da
commit
58fa411260
|
@ -1112,6 +1112,8 @@ void CADSTAR_ARCHIVE_PARSER::ATTRNAME::Parse( XNODE* aNode, PARSER_CONTEXT* aCon
|
|||
AttributeOwner = ATTROWNER::PART_DEFINITION;
|
||||
else if( attOwnerVal == wxT( "PIN" ) )
|
||||
AttributeOwner = ATTROWNER::PIN;
|
||||
else if( attOwnerVal == wxT( "SIGNALREF" ) )
|
||||
AttributeOwner = ATTROWNER::SIGNALREF;
|
||||
else if( attOwnerVal == wxT( "SYMBOL" ) )
|
||||
AttributeOwner = ATTROWNER::SYMBOL;
|
||||
else if( attOwnerVal == wxT( "SYMDEF" ) )
|
||||
|
|
|
@ -631,6 +631,7 @@ public:
|
|||
PART, ///< Only library Attributes
|
||||
PART_DEFINITION, ///< Only library Attributes
|
||||
PIN,
|
||||
SIGNALREF,
|
||||
SYMBOL,
|
||||
SYMDEF,
|
||||
TEMPLATE,
|
||||
|
|
Loading…
Reference in New Issue