| 8709 | } |
| 8710 | |
| 8711 | AsyncResult* NoteStore::authenticateToSharedNoteAsync(QString guid, QString noteKey, QString authenticationToken) |
| 8712 | { |
| 8713 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 8714 | QByteArray params = NoteStore_authenticateToSharedNote_prepareParams(guid, noteKey, authenticationToken); |
| 8715 | return new AsyncResult(url_, params, NoteStore_authenticateToSharedNote_readReplyAsync); |
| 8716 | } |
| 8717 | |
| 8718 | QByteArray NoteStore_findRelated_prepareParams(QString authenticationToken, const RelatedQuery& query, const RelatedResultSpec& resultSpec) |
| 8719 | { |
nothing calls this directly
no test coverage detected