Fix warning generated by sim string changes

This commit is contained in:
Ian McInerney 2022-09-24 00:12:25 +01:00
parent 6310f84a57
commit c71c192372
1 changed files with 1 additions and 1 deletions

View File

@ -496,7 +496,7 @@ void DIALOG_SIM_MODEL<T>::loadLibrary( const wxString& aFilePath )
}
wxArrayString modelNames;
for( const wxString& name : m_library->GetModelNames() )
for( const std::string& name : m_library->GetModelNames() )
modelNames.Add( name );
auto validator = dynamic_cast<MODEL_NAME_VALIDATOR*>( m_modelNameCombobox->GetValidator() );