| 492 | QtPassSettings::setPwgenExecutable(pwgenExecutable); |
| 493 | } |
| 494 | auto QtPassSettings::getPassExecutable(const QString &defaultValue) -> QString { |
| 495 | return getInstance() |
| 496 | ->value(SettingsConstants::passExecutable, defaultValue) |
| 497 | .toString(); |
| 498 | } |
| 499 | void QtPassSettings::setPassExecutable(const QString &passExecutable) { |
| 500 | getInstance()->setValue(SettingsConstants::passExecutable, passExecutable); |
| 501 | } |
nothing calls this directly
no outgoing calls
no test coverage detected