| 4559 | } |
| 4560 | |
| 4561 | Note NoteStore::updateNote(const Note& note, QString authenticationToken) |
| 4562 | { |
| 4563 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 4564 | QByteArray params = NoteStore_updateNote_prepareParams(authenticationToken, note); |
| 4565 | QByteArray reply = askEvernote(url_, params); |
| 4566 | return NoteStore_updateNote_readReply(reply); |
| 4567 | } |
| 4568 | |
| 4569 | AsyncResult* NoteStore::updateNoteAsync(const Note& note, QString authenticationToken) |
| 4570 | { |
no test coverage detected