! \brief Create a TrackContentObject View in this track View. * * \param tco the TrackContentObject to create the view for. * \todo is this a good description for what this method does? */
| 2864 | * \todo is this a good description for what this method does? |
| 2865 | */ |
| 2866 | void TrackView::createTCOView( TrackContentObject * tco ) |
| 2867 | { |
| 2868 | TrackContentObjectView * tv = tco->createView( this ); |
| 2869 | if( tco->getSelectViewOnCreate() == true ) |
| 2870 | { |
| 2871 | tv->setSelected( true ); |
| 2872 | } |
| 2873 | tco->selectViewOnCreate( false ); |
| 2874 | } |
nothing calls this directly
no test coverage detected