| 292 | } |
| 293 | |
| 294 | bool PluginManager::RemoveConfigSubgroup(ConfigurationType type, |
| 295 | const PluginID & ID, const RegistryPath & group) |
| 296 | { |
| 297 | bool result = GetSettings()->DeleteGroup(Group(type, ID, group)); |
| 298 | if (result) |
| 299 | { |
| 300 | GetSettings()->Flush(); |
| 301 | } |
| 302 | |
| 303 | return result; |
| 304 | } |
| 305 | |
| 306 | bool PluginManager::RemoveConfig(ConfigurationType type, const PluginID & ID, |
| 307 | const RegistryPath & group, const RegistryPath & key) |
no test coverage detected