| 2649 | } |
| 2650 | |
| 2651 | void MainWindow::stepOver() { |
| 2652 | if (!guiDebug) { |
| 2653 | return; |
| 2654 | } |
| 2655 | |
| 2656 | disconnect(m_shortcutStepOver, &QShortcut::activated, this, &MainWindow::stepOver); |
| 2657 | |
| 2658 | debugSync(); |
| 2659 | debugStep(DBG_STEP_OVER); |
| 2660 | } |
| 2661 | |
| 2662 | void MainWindow::stepNext() { |
| 2663 | if (!guiDebug) { |
nothing calls this directly
no outgoing calls
no test coverage detected