| 213 | |
| 214 | |
| 215 | void StringsTreeView::stringDoubleClicked(const QModelIndex& cur) |
| 216 | { |
| 217 | BNStringReference stringRef = m_model->getStringRefAt(cur); |
| 218 | if (stringRef.start == 0) |
| 219 | return; |
| 220 | |
| 221 | ViewFrame* viewFrame = ViewFrame::viewFrameForWidget(this); |
| 222 | if (viewFrame) |
| 223 | { |
| 224 | viewFrame->navigate("Linear:" + viewFrame->getCurrentDataType(), stringRef.start); |
| 225 | } |
| 226 | } |
| 227 | |
| 228 | |
| 229 | void StringsTreeView::setFilter(const std::string& filterText) |
nothing calls this directly
no test coverage detected