| 4801 | } |
| 4802 | |
| 4803 | AsyncResult* NoteStore::expungeNoteAsync(Guid guid, QString authenticationToken) |
| 4804 | { |
| 4805 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 4806 | QByteArray params = NoteStore_expungeNote_prepareParams(authenticationToken, guid); |
| 4807 | return new AsyncResult(url_, params, NoteStore_expungeNote_readReplyAsync); |
| 4808 | } |
| 4809 | |
| 4810 | QByteArray NoteStore_expungeNotes_prepareParams(QString authenticationToken, QList< Guid > noteGuids) |
| 4811 | { |
nothing calls this directly
no test coverage detected