| 465 | } |
| 466 | |
| 467 | void RamSearchWindow::slotHex() |
| 468 | { |
| 469 | const QModelIndex index = ramSearchView->selectionModel()->currentIndex(); |
| 470 | |
| 471 | /* If no watch was selected, return */ |
| 472 | if (!index.isValid()) |
| 473 | return; |
| 474 | |
| 475 | hexViewWindow->seek(ramSearchModel->address(index.row()), MemValue::type_size(typeBox->currentIndex())); |
| 476 | hexViewWindow->show(); |
| 477 | } |
| 478 | |
| 479 | void RamSearchWindow::slotStop() |
| 480 | { |