| 190 | } |
| 191 | |
| 192 | void MainWindow::memGotoEdit(HexWidget *edit) { |
| 193 | if (edit == Q_NULLPTR) { |
| 194 | return; |
| 195 | } |
| 196 | |
| 197 | bool accept = false; |
| 198 | QString address = getAddressString(m_memGotoAddr, &accept); |
| 199 | |
| 200 | if (accept) { |
| 201 | memGoto(edit, static_cast<uint32_t>(hex2int(m_memGotoAddr = address))); |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | void MainWindow::memSync(HexWidget *edit) { |
| 206 | if (edit == Q_NULLPTR) { |