| 522 | } |
| 523 | |
| 524 | void 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 | |
| 535 | void MainWindow::setUIDocks() { |
| 536 |
nothing calls this directly
no outgoing calls
no test coverage detected