mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
Compare commits
3 Commits
2bc0814fc8
...
e04e1789e6
Author | SHA1 | Date | |
---|---|---|---|
|
e04e1789e6 | ||
|
98dd5a68eb | ||
|
00d343d300 |
@ -424,7 +424,7 @@ bool DIALOG_SIM_COMMAND::TransferDataFromWindow()
|
||||
}
|
||||
|
||||
if( !ref.IsEmpty() )
|
||||
ref = wxS( "," ) + m_circuitModel->GetItemName( ref );
|
||||
ref = wxS( ", " ) + ref;
|
||||
|
||||
m_simCommand.Printf( ".noise v(%s%s) %s %s %s %s %s %s",
|
||||
output,
|
||||
|
@ -542,7 +542,8 @@ void DRC_ENGINE::compileRules()
|
||||
}
|
||||
|
||||
if( error_semaphore.HasMessageOfSeverity( RPT_SEVERITY_ERROR ) )
|
||||
THROW_PARSE_ERROR( wxT( "Parse error" ), rule->m_Name, rule->m_Condition->GetExpression(), 0, 0 );
|
||||
THROW_PARSE_ERROR( wxT( "Parse error" ), rule->m_Name,
|
||||
TO_UTF8( rule->m_Condition->GetExpression() ), 0, 0 );
|
||||
|
||||
for( const DRC_CONSTRAINT& constraint : rule->m_Constraints )
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user