| 26 | // ------------------------------------------------ |
| 27 | |
| 28 | QString MainWindow::getAddressString(const QString& string, bool* ok) { |
| 29 | QString address = QInputDialog::getText(this, tr("Goto"), |
| 30 | tr("Input Address (Or Equate):"), QLineEdit::Normal, |
| 31 | string, ok).toUpper(); |
| 32 | |
| 33 | QString exists = getAddressOfEquate(address.toUpper().toStdString()); |
| 34 | if (!exists.isEmpty()) { |
| 35 | return exists; |
| 36 | } |
| 37 | |
| 38 | return int2hex(static_cast<uint32_t>(hex2int(address)), 6); |
| 39 | } |
| 40 | |
| 41 | void MainWindow::flashUpdate() { |
| 42 | if (!guiEmuValid) { |
nothing calls this directly
no test coverage detected