| 288 | } |
| 289 | |
| 290 | void DisassembleWidget::runToCursor() |
| 291 | { |
| 292 | if (auto* const session = currentRunningSession()) { |
| 293 | const auto address = m_disassembleWindow->selectedAddress(); |
| 294 | Q_ASSERT(!address.isEmpty()); |
| 295 | session->runUntil(address); |
| 296 | } |
| 297 | } |
| 298 | |
| 299 | void DisassembleWidget::currentSessionChanged(KDevelop::IDebugSession* iSession, |
| 300 | KDevelop::IDebugSession* iPreviousSession) |
nothing calls this directly
no test coverage detected