Fix missing virtual dtor

This commit is contained in:
Jon Evans 2022-09-23 21:44:15 -04:00
parent 2089374f53
commit 35520c78e4
2 changed files with 2 additions and 2 deletions

View File

@ -1127,7 +1127,7 @@ void DIALOG_SYMBOL_FIELDS_TABLE::OnRemoveField( wxCommandEvent& event )
for( int i = 0; i < m_dataModel->GetNumberCols(); ++i )
{
if( fieldName == m_dataModel->GetColLabelValue( i ) )
col = i;
col = i;
}
m_fieldsCtrl->DeleteItem( row );

View File

@ -53,7 +53,7 @@ class SYMBOL_LIBRARY_MANAGER
{
public:
SYMBOL_LIBRARY_MANAGER( SCH_BASE_FRAME& aFrame );
~SYMBOL_LIBRARY_MANAGER();
virtual ~SYMBOL_LIBRARY_MANAGER();
/**
* Preloads all symbol libraries in the symbol library table using SYMBOL_ASYNC_LOADER.