| 343 | } |
| 344 | |
| 345 | auto QtPassSettings::isUseAutoclearPanel(const bool &defaultValue) -> bool { |
| 346 | return getInstance() |
| 347 | ->value(SettingsConstants::useAutoclearPanel, defaultValue) |
| 348 | .toBool(); |
| 349 | } |
| 350 | void QtPassSettings::setUseAutoclearPanel(const bool &useAutoclearPanel) { |
| 351 | getInstance()->setValue(SettingsConstants::useAutoclearPanel, |
| 352 | useAutoclearPanel); |
nothing calls this directly
no outgoing calls
no test coverage detected