1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-23 17:30:17 +01:00

Some replacements of wxArrayString with auto

This commit is contained in:
Paul Licameli
2019-02-12 14:00:23 -05:00
parent e46990f709
commit da33daf197
16 changed files with 25 additions and 25 deletions

View File

@@ -514,7 +514,7 @@ void ModuleManager::FindAllPlugins(PluginIDList & providers, wxArrayString & pat
if (!module)
continue;
wxArrayString newpaths = module->FindPluginPaths(pm);
auto newpaths = module->FindPluginPaths(pm);
for (size_t j = 0, cntPaths = newpaths.size(); j < cntPaths; j++)
{
providers.push_back(providerID);