| 5826 | } |
| 5827 | |
| 5828 | bool EventBrowser::SelectEvent(uint32_t eventId) |
| 5829 | { |
| 5830 | if(!m_Ctx.IsCaptureLoaded()) |
| 5831 | return false; |
| 5832 | |
| 5833 | QModelIndex found = m_FilterModel->mapFromSource(m_Model->GetIndexForEID(eventId)); |
| 5834 | if(found.isValid()) |
| 5835 | { |
| 5836 | SelectEvent(found); |
| 5837 | |
| 5838 | return true; |
| 5839 | } |
| 5840 | |
| 5841 | return false; |
| 5842 | } |
| 5843 | |
| 5844 | void EventBrowser::SelectEvent(QModelIndex idx) |
| 5845 | { |
nothing calls this directly
no test coverage detected