| 4684 | } |
| 4685 | |
| 4686 | AsyncResult* NoteStore::deleteNoteAsync(Guid guid, QString authenticationToken) |
| 4687 | { |
| 4688 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 4689 | QByteArray params = NoteStore_deleteNote_prepareParams(authenticationToken, guid); |
| 4690 | return new AsyncResult(url_, params, NoteStore_deleteNote_readReplyAsync); |
| 4691 | } |
| 4692 | |
| 4693 | QByteArray NoteStore_expungeNote_prepareParams(QString authenticationToken, Guid guid) |
| 4694 | { |
nothing calls this directly
no test coverage detected