| 1998 | } |
| 1999 | |
| 2000 | void MainWindow::gotoMemAddr(uint32_t address) { |
| 2001 | HexWidget *memWidget = gotoMemAddrNoRaise(address); |
| 2002 | if (memWidget != Q_NULLPTR) { |
| 2003 | raiseContainingDock(memWidget); |
| 2004 | memWidget->setFocus(); |
| 2005 | } |
| 2006 | } |
| 2007 | |
| 2008 | HexWidget *MainWindow::gotoMemAddrNoRaise(uint32_t address) { |
| 2009 | HexWidget *memWidget = m_memWidget; |
nothing calls this directly
no outgoing calls
no test coverage detected