Browse Source

Remove unused member variable.

pull/18/head
Jeff Young 5 months ago
parent
commit
f97ab279a3
  1. 3
      eeschema/sch_io/altium/sch_io_altium.cpp
  2. 3
      eeschema/sch_io/altium/sch_io_altium.h

3
eeschema/sch_io/altium/sch_io_altium.cpp

@ -3659,8 +3659,7 @@ 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,
m_properties.get() ) )
else if( LIB_SYMBOL* alreadyLoaded = m_pi->LoadSymbol( getLibFileName().GetFullPath(), symName ) )
{
libSymbol = alreadyLoaded;
}

3
eeschema/sch_io/altium/sch_io_altium.h

@ -228,8 +228,7 @@ private:
wxString m_libName; // Library name to save symbols
bool m_isIntLib; // Flag to indicate Integrated Library
IO_RELEASER<SCH_IO> m_pi; // Plugin to create KiCad symbol library.
std::unique_ptr<std::map<std::string, UTF8>> m_properties; // Library plugin properties.
IO_RELEASER<SCH_IO> m_pi; // Plugin to create KiCad symbol library.
std::unique_ptr<TITLE_BLOCK> m_currentTitleBlock; // Will be assigned at the end of parsing
// a sheet

Loading…
Cancel
Save