1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-07 04:01:54 +01:00

A few more uses of type alias EnumValueSymbol where more proper

This commit is contained in:
Paul Licameli
2019-03-19 15:14:50 -04:00
parent d326220f0c
commit da895783fd
4 changed files with 11 additions and 11 deletions

View File

@@ -397,7 +397,7 @@ wxString EnumSetting::Read() const
size_t EnumSetting::Find( const wxString &value ) const
{
return size_t(
std::find( begin(), end(), ComponentInterfaceSymbol{ value, {} } )
std::find( begin(), end(), EnumValueSymbol{ value, {} } )
- mSymbols );
}