MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / stateToFile

Method stateToFile

gui/qt/mainwindow.cpp:1308–1316  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1306}
1307
1308void 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
1318void MainWindow::romExport() {
1319 QString filter = tr("ROM images (*.rom)");

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected