| 122 | } |
| 123 | |
| 124 | void PreferencePage::appendCheckBox(const std::string& label, const std::string& registryKey) |
| 125 | { |
| 126 | _items.push_back(std::make_shared<PreferenceCheckbox>(label, registryKey)); |
| 127 | } |
| 128 | |
| 129 | void PreferencePage::appendSlider(const std::string& name, const std::string& registryKey, |
| 130 | double lower, double upper, double stepIncrement, double pageIncrement) |
no test coverage detected