| 5027 | } |
| 5028 | |
| 5029 | AsyncResult* NoteStore::expungeInactiveNotesAsync(QString authenticationToken) |
| 5030 | { |
| 5031 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 5032 | QByteArray params = NoteStore_expungeInactiveNotes_prepareParams(authenticationToken); |
| 5033 | return new AsyncResult(url_, params, NoteStore_expungeInactiveNotes_readReplyAsync); |
| 5034 | } |
| 5035 | |
| 5036 | QByteArray NoteStore_copyNote_prepareParams(QString authenticationToken, Guid noteGuid, Guid toNotebookGuid) |
| 5037 | { |
nothing calls this directly
no test coverage detected