| 9114 | } |
| 9115 | |
| 9116 | AuthenticationResult UserStore::authenticate(QString username, QString password, QString consumerKey, QString consumerSecret, bool supportsTwoFactor) |
| 9117 | { |
| 9118 | QByteArray params = UserStore_authenticate_prepareParams(username, password, consumerKey, consumerSecret, supportsTwoFactor); |
| 9119 | QByteArray reply = askEvernote(url_, params); |
| 9120 | return UserStore_authenticate_readReply(reply); |
| 9121 | } |
| 9122 | |
| 9123 | AsyncResult* UserStore::authenticateAsync(QString username, QString password, QString consumerKey, QString consumerSecret, bool supportsTwoFactor) |
| 9124 | { |
nothing calls this directly
no test coverage detected