| 1349 | } |
| 1350 | |
| 1351 | void MainWindow::dropEvent(QDropEvent *e) { |
| 1352 | if (m_isSendingRom) { |
| 1353 | setRom(m_dragRom); |
| 1354 | } else { |
| 1355 | sendingHandler->dropOccured(e, LINK_FILE); |
| 1356 | } |
| 1357 | equatesRefresh(); |
| 1358 | } |
| 1359 | |
| 1360 | void MainWindow::dragEnterEvent(QDragEnterEvent *e) { |
| 1361 |
nothing calls this directly
no test coverage detected