| 321 | |
| 322 | |
| 323 | void ExportsTreeView::exportSelected(const QModelIndex& cur, const QModelIndex&) |
| 324 | { |
| 325 | SymbolRef sym = m_model->getSymbol(cur); |
| 326 | if (sym) |
| 327 | m_view->setCurrentOffset(sym->GetAddress()); |
| 328 | } |
| 329 | |
| 330 | |
| 331 | void ExportsTreeView::exportDoubleClicked(const QModelIndex& cur) |
nothing calls this directly
no test coverage detected