| 251 | } |
| 252 | |
| 253 | bool PasscodeBox::currentlyHave() const { |
| 254 | return _cloudPwd |
| 255 | ? _cloudFields.hasPassword |
| 256 | : _session->domain().local().hasLocalPasscode(); |
| 257 | } |
| 258 | |
| 259 | bool PasscodeBox::onlyCheckCurrent() const { |
| 260 | return _turningOff || _cloudFields.customCheckCallback; |
nothing calls this directly
no test coverage detected