| 9235 | } |
| 9236 | |
| 9237 | AuthenticationResult UserStore::authenticateLongSession(QString username, QString password, QString consumerKey, QString consumerSecret, QString deviceIdentifier, QString deviceDescription, bool supportsTwoFactor) |
| 9238 | { |
| 9239 | QByteArray params = UserStore_authenticateLongSession_prepareParams(username, password, consumerKey, consumerSecret, deviceIdentifier, deviceDescription, supportsTwoFactor); |
| 9240 | QByteArray reply = askEvernote(url_, params); |
| 9241 | return UserStore_authenticateLongSession_readReply(reply); |
| 9242 | } |
| 9243 | |
| 9244 | AsyncResult* UserStore::authenticateLongSessionAsync(QString username, QString password, QString consumerKey, QString consumerSecret, QString deviceIdentifier, QString deviceDescription, bool supportsTwoFactor) |
| 9245 | { |
nothing calls this directly
no test coverage detected