| 1471 | } |
| 1472 | |
| 1473 | void ScriptCreatedComponentWrappers::LabelWrapper::labelTextChanged(Label *l) |
| 1474 | { |
| 1475 | auto sc = getScriptComponent(); |
| 1476 | |
| 1477 | sc->setValue(l->getText()); |
| 1478 | |
| 1479 | dynamic_cast<ProcessorWithScriptingContent*>(getProcessor())->controlCallback(getScriptComponent(), sc->getValue()); |
| 1480 | } |
| 1481 | |
| 1482 | void ScriptCreatedComponentWrappers::LabelWrapper::updateValue(var newValue) |
| 1483 | { |
nothing calls this directly
no test coverage detected