| 441 | } |
| 442 | |
| 443 | AsyncResult* NoteStore::getFilteredSyncChunkAsync(qint32 afterUSN, qint32 maxEntries, const SyncChunkFilter& filter, QString authenticationToken) |
| 444 | { |
| 445 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 446 | QByteArray params = NoteStore_getFilteredSyncChunk_prepareParams(authenticationToken, afterUSN, maxEntries, filter); |
| 447 | return new AsyncResult(url_, params, NoteStore_getFilteredSyncChunk_readReplyAsync); |
| 448 | } |
| 449 | |
| 450 | QByteArray NoteStore_getLinkedNotebookSyncState_prepareParams(QString authenticationToken, const LinkedNotebook& linkedNotebook) |
| 451 | { |
nothing calls this directly
no test coverage detected