| 102 | } |
| 103 | |
| 104 | void HexViewWindow::switch_section() |
| 105 | { |
| 106 | if (memsections.empty()) |
| 107 | return; |
| 108 | |
| 109 | const MemSection& section = memsections[sectionChoice->currentIndex()]; |
| 110 | iodevice->setSection(section); |
| 111 | view->setBaseAddress(section.addr); |
| 112 | } |
| 113 | |
| 114 | void HexViewWindow::seek(uintptr_t addr, int size) |
| 115 | { |
nothing calls this directly
no test coverage detected