| 9121 | } |
| 9122 | |
| 9123 | AsyncResult* UserStore::authenticateAsync(QString username, QString password, QString consumerKey, QString consumerSecret, bool supportsTwoFactor) |
| 9124 | { |
| 9125 | QByteArray params = UserStore_authenticate_prepareParams(username, password, consumerKey, consumerSecret, supportsTwoFactor); |
| 9126 | return new AsyncResult(url_, params, UserStore_authenticate_readReplyAsync); |
| 9127 | } |
| 9128 | |
| 9129 | QByteArray UserStore_authenticateLongSession_prepareParams(QString username, QString password, QString consumerKey, QString consumerSecret, QString deviceIdentifier, QString deviceDescription, bool supportsTwoFactor) |
| 9130 | { |
nothing calls this directly
no test coverage detected