| 2638 | //------------------------------------------------ |
| 2639 | |
| 2640 | void MainWindow::stepIn() { |
| 2641 | if (!guiDebug) { |
| 2642 | return; |
| 2643 | } |
| 2644 | |
| 2645 | disconnect(m_shortcutStepIn, &QShortcut::activated, this, &MainWindow::stepIn); |
| 2646 | |
| 2647 | debugSync(); |
| 2648 | debugStep(DBG_STEP_IN); |
| 2649 | } |
| 2650 | |
| 2651 | void MainWindow::stepOver() { |
| 2652 | if (!guiDebug) { |
nothing calls this directly
no outgoing calls
no test coverage detected