| 6391 | } |
| 6392 | |
| 6393 | bool |
| 6394 | AnimatingKnobStringHelper::cloneExtraDataAndCheckIfChanged(KnobI* other, |
| 6395 | int /*dimension*/, |
| 6396 | int /*otherDimension*/) |
| 6397 | { |
| 6398 | AnimatingKnobStringHelper* isAnimatedString = dynamic_cast<AnimatingKnobStringHelper*>(other); |
| 6399 | |
| 6400 | if (isAnimatedString) { |
| 6401 | return _animation->cloneAndCheckIfChanged( isAnimatedString->getAnimation() ); |
| 6402 | } |
| 6403 | |
| 6404 | return false; |
| 6405 | } |
| 6406 | |
| 6407 | void |
| 6408 | AnimatingKnobStringHelper::cloneExtraData(KnobI* other, |
nothing calls this directly
no test coverage detected