| 8368 | } |
| 8369 | |
| 8370 | AsyncResult* NoteStore::emailNoteAsync(const NoteEmailParameters& parameters, QString authenticationToken) |
| 8371 | { |
| 8372 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 8373 | QByteArray params = NoteStore_emailNote_prepareParams(authenticationToken, parameters); |
| 8374 | return new AsyncResult(url_, params, NoteStore_emailNote_readReplyAsync); |
| 8375 | } |
| 8376 | |
| 8377 | QByteArray NoteStore_shareNote_prepareParams(QString authenticationToken, Guid guid) |
| 8378 | { |
nothing calls this directly
no test coverage detected