| 1972 | // ------------------------------------------------ |
| 1973 | |
| 1974 | void MainWindow::gotoPressed() { |
| 1975 | bool accept; |
| 1976 | |
| 1977 | if (m_gotoAddr.isEmpty()) { |
| 1978 | m_gotoAddr = m_disasm->getSelectedAddr(); |
| 1979 | } |
| 1980 | |
| 1981 | QString address = getAddressString(m_gotoAddr, &accept); |
| 1982 | |
| 1983 | if (accept) { |
| 1984 | disasmUpdateAddr(hex2int(m_gotoAddr = address), false); |
| 1985 | } |
| 1986 | } |
| 1987 | |
| 1988 | void MainWindow::gotoDisasmAddr(uint32_t address) { |
| 1989 | disasmUpdateAddr(address, false); |
nothing calls this directly
no test coverage detected