| 8701 | } |
| 8702 | |
| 8703 | AuthenticationResult NoteStore::authenticateToSharedNote(QString guid, QString noteKey, QString authenticationToken) |
| 8704 | { |
| 8705 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 8706 | QByteArray params = NoteStore_authenticateToSharedNote_prepareParams(guid, noteKey, authenticationToken); |
| 8707 | QByteArray reply = askEvernote(url_, params); |
| 8708 | return NoteStore_authenticateToSharedNote_readReply(reply); |
| 8709 | } |
| 8710 | |
| 8711 | AsyncResult* NoteStore::authenticateToSharedNoteAsync(QString guid, QString noteKey, QString authenticationToken) |
| 8712 | { |
nothing calls this directly
no test coverage detected