| 1306 | } |
| 1307 | |
| 1308 | void MainWindow::stateToFile() { |
| 1309 | QString path = QFileDialog::getSaveFileName(this, tr("Set image to save to"), |
| 1310 | m_dir.absolutePath(), |
| 1311 | tr("CEmu images (*.ce);;All files (*.*)")); |
| 1312 | if (!path.isEmpty()) { |
| 1313 | m_dir = QFileInfo(path).absoluteDir(); |
| 1314 | stateToPath(path); |
| 1315 | } |
| 1316 | } |
| 1317 | |
| 1318 | void MainWindow::romExport() { |
| 1319 | QString filter = tr("ROM images (*.rom)"); |
nothing calls this directly
no outgoing calls
no test coverage detected