| 624 | } |
| 625 | |
| 626 | QString |
| 627 | AnimatedParam::getExpression(int dimension, |
| 628 | bool* hasRetVariable) const |
| 629 | { |
| 630 | KnobIPtr thisKnob = _knob.lock(); |
| 631 | if (!thisKnob) { |
| 632 | return QString(); |
| 633 | } |
| 634 | QString ret = QString::fromUtf8( thisKnob->getExpression(dimension).c_str() ); |
| 635 | |
| 636 | *hasRetVariable = thisKnob->isExpressionUsingRetVariable(dimension); |
| 637 | |
| 638 | return ret; |
| 639 | } |
| 640 | |
| 641 | ///////////// IntParam |
| 642 |
nothing calls this directly
no test coverage detected