| 304 | } |
| 305 | |
| 306 | bool PluginManager::RemoveConfig(ConfigurationType type, const PluginID & ID, |
| 307 | const RegistryPath & group, const RegistryPath & key) |
| 308 | { |
| 309 | bool result = GetSettings()->DeleteEntry(Key(type, ID, group, key)); |
| 310 | if (result) |
| 311 | { |
| 312 | GetSettings()->Flush(); |
| 313 | } |
| 314 | |
| 315 | return result; |
| 316 | } |
| 317 | |
| 318 | // ============================================================================ |
| 319 | // |
no test coverage detected