| 141 | } |
| 142 | |
| 143 | ParamWidget* ModuleWidget::getParam(int paramId) { |
| 144 | return getFirstDescendantOfTypeWithCondition<ParamWidget>(this, [&](ParamWidget* pw) -> bool { |
| 145 | return pw->paramId == paramId; |
| 146 | }); |
| 147 | } |
| 148 | |
| 149 | PortWidget* ModuleWidget::getInput(int portId) { |
| 150 | return getFirstDescendantOfTypeWithCondition<PortWidget>(this, [&](PortWidget* pw) -> bool { |
nothing calls this directly
no outgoing calls
no test coverage detected