| 251 | |
| 252 | |
| 253 | void ImportsTreeView::importSelected(const QModelIndex& cur, const QModelIndex&) |
| 254 | { |
| 255 | SymbolRef sym = m_model->getSymbol(cur); |
| 256 | if (sym) |
| 257 | m_view->setCurrentOffset(sym->GetAddress()); |
| 258 | } |
| 259 | |
| 260 | |
| 261 | void ImportsTreeView::importDoubleClicked(const QModelIndex& cur) |
nothing calls this directly
no test coverage detected