| 554 | } |
| 555 | |
| 556 | bool ModuleManager::CheckModuleLoaded(const FilePath& moduleName) const |
| 557 | { |
| 558 | for (const auto &module : mModules) { |
| 559 | if (wxFileName(module->GetName()).GetName() == wxFileName(moduleName).GetName()) { |
| 560 | return true; |
| 561 | } |
| 562 | } |
| 563 | return false; |
| 564 | } |
| 565 | |
| 566 | bool ModuleManager::IsProviderValid(const PluginID & WXUNUSED(providerID), |
| 567 | const PluginPath & path) const |
no test coverage detected