| 8360 | } |
| 8361 | |
| 8362 | void NoteStore::emailNote(const NoteEmailParameters& parameters, QString authenticationToken) |
| 8363 | { |
| 8364 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 8365 | QByteArray params = NoteStore_emailNote_prepareParams(authenticationToken, parameters); |
| 8366 | QByteArray reply = askEvernote(url_, params); |
| 8367 | NoteStore_emailNote_readReply(reply); |
| 8368 | } |
| 8369 | |
| 8370 | AsyncResult* NoteStore::emailNoteAsync(const NoteEmailParameters& parameters, QString authenticationToken) |
| 8371 | { |
nothing calls this directly
no test coverage detected