| 12 | static QObject *addPulse = nullptr; |
| 13 | |
| 14 | void AdvSceneSwitcher::on_executableAdd_clicked() |
| 15 | { |
| 16 | std::lock_guard<std::mutex> lock(switcher->m); |
| 17 | switcher->executableSwitches.emplace_back(); |
| 18 | |
| 19 | listAddClicked(ui->executables, |
| 20 | new ExecutableSwitchWidget( |
| 21 | this, &switcher->executableSwitches.back()), |
| 22 | &addPulse); |
| 23 | |
| 24 | ui->exeHelp->setVisible(false); |
| 25 | } |
| 26 | |
| 27 | void AdvSceneSwitcher::on_executableRemove_clicked() |
| 28 | { |
nothing calls this directly
no test coverage detected