| 76 | } |
| 77 | |
| 78 | bool RemoveConfigSubgroup( const EffectDefinitionInterface &ident, |
| 79 | PluginSettings::ConfigurationType type, |
| 80 | const RegistryPath & group) |
| 81 | { |
| 82 | auto &pluginManager = PluginManager::Get(); |
| 83 | const auto &id = pluginManager.GetID(&ident); |
| 84 | const auto &id2 = pluginManager.OldGetID(&ident); |
| 85 | return pluginManager.RemoveConfigSubgroup(type, id, group) |
| 86 | || (id2 != id && pluginManager.RemoveConfigSubgroup(type, id2, group)); |
| 87 | } |
| 88 | |
| 89 | bool RemoveConfig( const EffectDefinitionInterface &ident, |
| 90 | PluginSettings::ConfigurationType type, |
no test coverage detected