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

Method setDebugPath

gui/qt/settings.cpp:524–533  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

522}
523
524void MainWindow::setDebugPath() {
525 QString savePath = QFileDialog::getSaveFileName(this, tr("Set debugging information path"),
526 m_dir.absolutePath(),
527 tr("Debugging information (*.ini);;All files (*.*)"));
528 if (!savePath.isEmpty()) {
529 m_dir = QFileInfo(savePath).absoluteDir();
530 m_config->setValue(SETTING_DEBUGGER_IMAGE_PATH, savePath);
531 ui->pathDebug->setText(savePath);
532 }
533}
534
535void MainWindow::setUIDocks() {
536

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected