| 2660 | } |
| 2661 | |
| 2662 | void MainWindow::stepNext() { |
| 2663 | if (!guiDebug) { |
| 2664 | return; |
| 2665 | } |
| 2666 | |
| 2667 | disconnect(m_shortcutStepNext, &QShortcut::activated, this, &MainWindow::stepNext); |
| 2668 | |
| 2669 | debugSync(); |
| 2670 | debugStep(DBG_STEP_NEXT); |
| 2671 | } |
| 2672 | |
| 2673 | void MainWindow::stepOut() { |
| 2674 | if (!guiDebug) { |
nothing calls this directly
no outgoing calls
no test coverage detected