| 2874 | } |
| 2875 | |
| 2876 | AsyncResult* NoteStore::findNotesAsync(const NoteFilter& filter, qint32 offset, qint32 maxNotes, QString authenticationToken) |
| 2877 | { |
| 2878 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 2879 | QByteArray params = NoteStore_findNotes_prepareParams(authenticationToken, filter, offset, maxNotes); |
| 2880 | return new AsyncResult(url_, params, NoteStore_findNotes_readReplyAsync); |
| 2881 | } |
| 2882 | |
| 2883 | QByteArray NoteStore_findNoteOffset_prepareParams(QString authenticationToken, const NoteFilter& filter, Guid guid) |
| 2884 | { |
nothing calls this directly
no test coverage detected