| 162 | |
| 163 | |
| 164 | void ParamWidget::destroyTooltip() { |
| 165 | if (!internal->tooltip) |
| 166 | return; |
| 167 | APP->scene->removeChild(internal->tooltip); |
| 168 | delete internal->tooltip; |
| 169 | internal->tooltip = NULL; |
| 170 | } |
| 171 | |
| 172 | void ParamWidget::step() { |
| 173 | engine::ParamQuantity* pq = getParamQuantity(); |
nothing calls this directly
no test coverage detected