| 220 | } |
| 221 | |
| 222 | PluginPaths NyquistEffectsModule::FindModulePaths(PluginManagerInterface & pm) |
| 223 | { |
| 224 | auto pathList = NyquistBase::GetNyquistSearchPath(); |
| 225 | FilePaths files; |
| 226 | |
| 227 | // Add the Nyquist prompt |
| 228 | files.push_back(NYQUIST_PROMPT_ID); |
| 229 | |
| 230 | // Load .ny plug-ins |
| 231 | pm.FindFilesInPathList(wxT("*.ny"), pathList, files); |
| 232 | // LLL: Works for all platform with NEW plugin support (dups are removed) |
| 233 | pm.FindFilesInPathList(wxT("*.NY"), pathList, files); // Ed's fix for bug 179 |
| 234 | |
| 235 | return { files.begin(), files.end() }; |
| 236 | } |
| 237 | |
| 238 | unsigned NyquistEffectsModule::DiscoverPluginsAtPath( |
| 239 | const PluginPath & path, TranslatableString &errMsg, |
nothing calls this directly
no test coverage detected