MCPcopy Create free account
hub / github.com/audacity/audacity / RemoveConfigSubgroup

Function RemoveConfigSubgroup

libraries/lib-module-manager/ConfigInterface.cpp:78–87  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

76}
77
78bool 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
89bool RemoveConfig( const EffectDefinitionInterface &ident,
90 PluginSettings::ConfigurationType type,

Callers 1

OnDeletePresetMethod · 0.85

Calls 4

GetFunction · 0.85
OldGetIDMethod · 0.80
RemoveConfigSubgroupMethod · 0.80
GetIDMethod · 0.45

Tested by

no test coverage detected