| 4922 | } |
| 4923 | |
| 4924 | AsyncResult* NoteStore::expungeNotesAsync(QList< Guid > noteGuids, QString authenticationToken) |
| 4925 | { |
| 4926 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 4927 | QByteArray params = NoteStore_expungeNotes_prepareParams(authenticationToken, noteGuids); |
| 4928 | return new AsyncResult(url_, params, NoteStore_expungeNotes_readReplyAsync); |
| 4929 | } |
| 4930 | |
| 4931 | QByteArray NoteStore_expungeInactiveNotes_prepareParams(QString authenticationToken) |
| 4932 | { |
nothing calls this directly
no test coverage detected