| 959 | } |
| 960 | |
| 961 | void MainWindow::showEvent(QShowEvent *e) { |
| 962 | if (!m_setup) { |
| 963 | e->ignore(); |
| 964 | return; |
| 965 | } |
| 966 | QMainWindow::showEvent(e); |
| 967 | e->accept(); |
| 968 | } |
| 969 | |
| 970 | DockWidget *MainWindow::redistributeFindDock(const QPoint &pos) { |
| 971 | QWidget *child = childAt(pos); |
nothing calls this directly
no outgoing calls
no test coverage detected