| 405 | } |
| 406 | |
| 407 | OptionalMessage LadspaEffectBase::LoadParameters( |
| 408 | const RegistryPath & group, EffectSettings &settings) const |
| 409 | { |
| 410 | wxString parms; |
| 411 | if (!GetConfig(*this, PluginSettings::Private, group, wxT("Parameters"), |
| 412 | parms, wxEmptyString)) |
| 413 | { |
| 414 | return {}; |
| 415 | } |
| 416 | |
| 417 | CommandParameters eap; |
| 418 | if (!eap.SetParameters(parms)) |
| 419 | { |
| 420 | return {}; |
| 421 | } |
| 422 | |
| 423 | if (!LoadSettings(eap, settings)) |
| 424 | return {}; |
| 425 | return { nullptr }; |
| 426 | } |
| 427 | |
| 428 | bool LadspaEffectBase::SaveParameters( |
| 429 | const RegistryPath & group, const EffectSettings &settings) const |
nothing calls this directly
no test coverage detected