| 2624 | } |
| 2625 | |
| 2626 | HexWidget *MainWindow::firstMemWidget() { |
| 2627 | if (!m_docksMemory.isEmpty()) { |
| 2628 | QWidget *dock = findChild<QDockWidget*>(m_docksMemory.first()); |
| 2629 | if (dock != Q_NULLPTR) { |
| 2630 | return dock->findChild<HexWidget*>(); |
| 2631 | } |
| 2632 | } |
| 2633 | return Q_NULLPTR; |
| 2634 | } |
| 2635 | |
| 2636 | //------------------------------------------------ |
| 2637 | // Stepping |
nothing calls this directly
no outgoing calls
no test coverage detected