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

Method SaveParameters

libraries/lib-ladspa/LadspaEffectBase.cpp:428–445  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

426}
427
428bool LadspaEffectBase::SaveParameters(
429 const RegistryPath & group, const EffectSettings &settings) const
430{
431 CommandParameters eap;
432 if (!SaveSettings(settings, eap))
433 {
434 return false;
435 }
436
437 wxString parms;
438 if (!eap.GetParameters(parms))
439 {
440 return false;
441 }
442
443 return SetConfig(*this, PluginSettings::Private,
444 group, wxT("Parameters"), parms);
445}

Callers

nothing calls this directly

Calls 2

SetConfigFunction · 0.85
GetParametersMethod · 0.45

Tested by

no test coverage detected