Calls mServices.ValidateUI()
| 65 | } |
| 66 | //! Calls mServices.ValidateUI() |
| 67 | bool ValidateUI() override |
| 68 | { |
| 69 | bool result {}; |
| 70 | mAccess.ModifySettings( |
| 71 | [&](EffectSettings& settings) |
| 72 | { |
| 73 | result = mEqualizationUI.ValidateUI(settings); |
| 74 | return nullptr; |
| 75 | }); |
| 76 | return result; |
| 77 | } |
| 78 | |
| 79 | void Disconnect() override |
| 80 | { |
nothing calls this directly
no test coverage detected