| 405 | } |
| 406 | |
| 407 | QString MainWindow::debugBasicGetPrgmName() { |
| 408 | char name[10]; |
| 409 | if (!debug_get_executing_basic_prgm(name)) { |
| 410 | return QString(); |
| 411 | } else { |
| 412 | return QString(calc_var_name_to_utf8(reinterpret_cast<uint8_t*>(&name[1]), strlen(&name[1]), true)); |
| 413 | } |
| 414 | } |
| 415 | |
| 416 | MainWindow::debug_basic_status_t MainWindow::debugBasicUpdate(bool force) { |
| 417 | int index = 0; |
nothing calls this directly
no test coverage detected