| 608 | } |
| 609 | |
| 610 | void Account::setHandleLoginCode(Fn<void(QString)> callback) { |
| 611 | _handleLoginCode = std::move(callback); |
| 612 | } |
| 613 | |
| 614 | void Account::handleLoginCode(const QString &code) const { |
| 615 | if (_handleLoginCode) { |
no outgoing calls
no test coverage detected