| 754 | |
| 755 | |
| 756 | void SampleTrack::setPlayingTcos( bool isPlaying ) |
| 757 | { |
| 758 | for( int i = 0; i < numOfTCOs(); ++i ) |
| 759 | { |
| 760 | TrackContentObject * tco = getTCO( i ); |
| 761 | SampleTCO * sTco = dynamic_cast<SampleTCO*>( tco ); |
| 762 | sTco->setIsPlaying( isPlaying ); |
| 763 | } |
| 764 | } |
| 765 | |
| 766 | |
| 767 |
no test coverage detected