| 520 | } |
| 521 | |
| 522 | void MainWindow::onResetRequested() |
| 523 | { |
| 524 | QMessageBox::StandardButton reply; |
| 525 | reply = QMessageBox::question(this, tr("Reset Configuration"), tr("Are you sure?"), |
| 526 | QMessageBox::Yes | QMessageBox::No); |
| 527 | |
| 528 | if (reply == QMessageBox::Yes) |
| 529 | { |
| 530 | DspConfig::instance().loadDefault(); |
| 531 | } |
| 532 | } |
| 533 | |
| 534 | void MainWindow::onPassthroughToggled() |
| 535 | { |
nothing calls this directly
no test coverage detected