| 388 | } |
| 389 | |
| 390 | Param* |
| 391 | App::getProjectParam(const QString& name) const |
| 392 | { |
| 393 | KnobIPtr knob = getInternalApp()->getProject()->getKnobByName( name.toStdString() ); |
| 394 | |
| 395 | if (!knob) { |
| 396 | return 0; |
| 397 | } |
| 398 | |
| 399 | return Effect::createParamWrapperForKnob(knob); |
| 400 | } |
| 401 | |
| 402 | void |
| 403 | App::writeToScriptEditor(const QString& message) |
no test coverage detected