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

Method runSetup

gui/qt/mainwindow.cpp:1658–1674  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1656}
1657
1658bool MainWindow::runSetup() {
1659 RomSelection *romWizard = new RomSelection();
1660 romWizard->setWindowModality(Qt::NonModal);
1661 romWizard->exec();
1662
1663 const QString path = romWizard->getRomPath();
1664
1665 delete romWizard;
1666
1667 if (path.isEmpty()) {
1668 return false;
1669 } else {
1670 setRom(path);
1671 }
1672
1673 return true;
1674}
1675
1676void MainWindow::screenshotSave(const QString& nameFilter, const QString& defaultSuffix, const QString& temppath) {
1677 QFileDialog dialog(this);

Callers

nothing calls this directly

Calls 1

getRomPathMethod · 0.80

Tested by

no test coverage detected