| 695 | } |
| 696 | |
| 697 | bool |
| 698 | TrackerContext::isMarkerSelected(const TrackMarkerPtr& marker) const |
| 699 | { |
| 700 | QMutexLocker k(&_imp->trackerContextMutex); |
| 701 | |
| 702 | for (std::list<TrackMarkerPtr>::const_iterator it = _imp->selectedMarkers.begin(); it != _imp->selectedMarkers.end(); ++it) { |
| 703 | if (*it == marker) { |
| 704 | return true; |
| 705 | } |
| 706 | } |
| 707 | |
| 708 | return false; |
| 709 | } |
| 710 | |
| 711 | void |
| 712 | TrackerContext::endSelection(TrackSelectionReason reason) |
no test coverage detected