| 66 | } |
| 67 | |
| 68 | FilterControl::~FilterControl() { |
| 69 | mParameters.global.filterType->removeListener(this); |
| 70 | mParameters.global.filterCutoff->removeListener(this); |
| 71 | mParameters.global.filterRes->removeListener(this); |
| 72 | stopTimer(); |
| 73 | } |
| 74 | |
| 75 | void FilterControl::parameterValueChanged(int, float) { mParamHasChanged.store(true); } |
| 76 |
nothing calls this directly
no test coverage detected