| 203 | |
| 204 | |
| 205 | void StringsTreeView::stringSelected(const QModelIndex& cur, const QModelIndex&) |
| 206 | { |
| 207 | BNStringReference stringRef = m_model->getStringRefAt(cur); |
| 208 | if (stringRef.start == 0) |
| 209 | return; |
| 210 | |
| 211 | m_view->setCurrentOffset(stringRef.start); |
| 212 | } |
| 213 | |
| 214 | |
| 215 | void StringsTreeView::stringDoubleClicked(const QModelIndex& cur) |
nothing calls this directly
no test coverage detected