! \brief Updates a trackContentObjectView's position. * * Ask our track view to change our position. Then make sure that the * track view is updated in case this position has changed the track * view's length. * */
| 489 | * |
| 490 | */ |
| 491 | void TrackContentObjectView::updatePosition() |
| 492 | { |
| 493 | m_trackView->getTrackContentWidget()->changePosition(); |
| 494 | // moving a TCO can result in change of song-length etc., |
| 495 | // therefore we update the track-container |
| 496 | m_trackView->trackContainerView()->update(); |
| 497 | } |
| 498 | |
| 499 | |
| 500 |
nothing calls this directly
no test coverage detected