Eeschema: minor coding policy fix
This commit is contained in:
parent
24d293ab8d
commit
e5f3edf0f1
|
@ -248,8 +248,7 @@ void Diagnose( NETLIST_OBJECT* aNetItemRef, NETLIST_OBJECT* aNetItemTst,
|
||||||
|
|
||||||
if( aMinConn < 0 )
|
if( aMinConn < 0 )
|
||||||
{
|
{
|
||||||
if( (aNetItemRef->m_Type == NET_HIERLABEL)
|
if( aNetItemRef->m_Type == NET_HIERLABEL || aNetItemRef->m_Type == NET_HIERBUSLABELMEMBER )
|
||||||
|| (aNetItemRef->m_Type == NET_HIERBUSLABELMEMBER) )
|
|
||||||
{
|
{
|
||||||
msg.Printf( _( "Hierarchical label %s is not connected to a sheet label." ),
|
msg.Printf( _( "Hierarchical label %s is not connected to a sheet label." ),
|
||||||
GetChars( aNetItemRef->m_Label ) );
|
GetChars( aNetItemRef->m_Label ) );
|
||||||
|
@ -258,7 +257,7 @@ void Diagnose( NETLIST_OBJECT* aNetItemRef, NETLIST_OBJECT* aNetItemTst,
|
||||||
msg,
|
msg,
|
||||||
aNetItemRef->m_Start );
|
aNetItemRef->m_Start );
|
||||||
}
|
}
|
||||||
else if( (aNetItemRef->m_Type == NET_GLOBLABEL) )
|
else if( aNetItemRef->m_Type == NET_GLOBLABEL )
|
||||||
{
|
{
|
||||||
msg.Printf( _( "Global label %s is not connected to any other global label." ),
|
msg.Printf( _( "Global label %s is not connected to any other global label." ),
|
||||||
GetChars( aNetItemRef->m_Label ) );
|
GetChars( aNetItemRef->m_Label ) );
|
||||||
|
|
Loading…
Reference in New Issue