| 703 | } |
| 704 | |
| 705 | void SettingsDialog::clearDelayedCommandsOnAutoStepChanged(int state) |
| 706 | { |
| 707 | QString clearDelayedCommandsOnAutoStep = (state == Qt::Checked) ? "true" : "false"; |
| 708 | DatabaseManager::getInstance().updateConfiguration(ConfigurationModel(0, "ClearDelayedCommandsOnAutoStep", clearDelayedCommandsOnAutoStep)); |
| 709 | } |
| 710 | |
| 711 | void SettingsDialog::storeThumbnailsInDatabaseChanged(int state) |
| 712 | { |
nothing calls this directly
no test coverage detected