Browse Source

We no longer create a symbol lib...

... so there's nothing to read from.  Anyway, if
it has already been seen it'll be in the cache.
pull/18/head
Jeff Young 4 months ago
parent
commit
1990eec90e
  1. 4
      eeschema/sch_io/altium/sch_io_altium.cpp

4
eeschema/sch_io/altium/sch_io_altium.cpp

@ -3643,10 +3643,6 @@ void SCH_IO_ALTIUM::ParsePowerPort( const std::map<wxString, wxString>& aPropert
{
libSymbol = powerSymbolIt->second; // cache hit
}
else if( LIB_SYMBOL* alreadyLoaded = m_pi->LoadSymbol( getLibFileName().GetFullPath(), symName ) )
{
libSymbol = alreadyLoaded;
}
else
{
libSymbol = new LIB_SYMBOL( wxEmptyString );

Loading…
Cancel
Save