| 1358 | } |
| 1359 | |
| 1360 | void MainWindow::dragEnterEvent(QDragEnterEvent *e) { |
| 1361 | |
| 1362 | // check if we are dragging a rom file |
| 1363 | m_dragRom = sendingROM(e, &m_isSendingRom); |
| 1364 | |
| 1365 | if (!m_isSendingRom) { |
| 1366 | sendingHandler->dragOccured(e); |
| 1367 | } |
| 1368 | } |
| 1369 | |
| 1370 | void MainWindow::emuSaved(bool success) { |
| 1371 | if (!success) { |
nothing calls this directly
no test coverage detected