| 25 | } |
| 26 | |
| 27 | bool GetConfigSubgroups( const EffectDefinitionInterface &ident, |
| 28 | PluginSettings::ConfigurationType type, |
| 29 | const RegistryPath & group, RegistryPaths &subgroups) |
| 30 | { |
| 31 | auto &pluginManager = PluginManager::Get(); |
| 32 | const auto &id = pluginManager.GetID(&ident); |
| 33 | if (pluginManager.GetConfigSubgroups( |
| 34 | type, id, group, subgroups)) |
| 35 | return true; |
| 36 | if (auto id2 = pluginManager.OldGetID(&ident); id != id2) |
| 37 | return pluginManager.GetConfigSubgroups(type, id2, group, subgroups); |
| 38 | return false; |
| 39 | } |
| 40 | |
| 41 | bool HasConfigValue( const EffectDefinitionInterface &ident, |
| 42 | PluginSettings::ConfigurationType type, |
no test coverage detected