! \brief Cut this trackContentObjectView from its track to the clipboard. * * Perform the 'cut' action of the clipboard - copies the track content * object to the clipboard and then removes it from the track. */
| 447 | * object to the clipboard and then removes it from the track. |
| 448 | */ |
| 449 | void TrackContentObjectView::cut() |
| 450 | { |
| 451 | m_tco->copy(); |
| 452 | remove(); |
| 453 | } |
| 454 | |
| 455 | |
| 456 |