Fix missing virtual dtor
This commit is contained in:
parent
2089374f53
commit
35520c78e4
|
@ -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 );
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue