Use FormatBool for PCB_GENERATOR serialisation

This commit is contained in:
John Beard 2023-12-12 20:47:15 +00:00 committed by Jon Evans
parent e41f5efb03
commit 9b2cde9571
1 changed files with 3 additions and 4 deletions

View File

@ -1979,10 +1979,9 @@ void PCB_PLUGIN::format( const PCB_GENERATOR* aGenerator, int aNestLevel ) const
m_out->Print( aNestLevel + 1, "(layer %s)",
m_out->Quotew( LSET::Name( aGenerator->GetLayer() ) ).c_str() );
if( aGenerator->IsLocked() )
m_out->Print( 0, " (locked yes)" );
m_out->Print( 0, "\n" );
if( const bool locked = aGenerator->IsLocked() ) {
KICAD_FORMAT::FormatBool( m_out, 0, "locked", locked );
}
for( const auto& [key, value] : aGenerator->GetProperties() )
{