| 105 | } |
| 106 | |
| 107 | void MainWindow::flashGotoPressed() { |
| 108 | bool accept = false; |
| 109 | QString addrStr = getAddressString(m_flashGotoAddr, &accept); |
| 110 | |
| 111 | if (accept) { |
| 112 | m_flashGotoAddr = addrStr; |
| 113 | ui->flashEdit->setFocus(); |
| 114 | ui->flashEdit->setOffset(hex2int(addrStr)); |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | void MainWindow::ramGotoPressed() { |
| 119 | bool accept = false; |