| 2866 | } |
| 2867 | |
| 2868 | NoteList NoteStore::findNotes(const NoteFilter& filter, qint32 offset, qint32 maxNotes, QString authenticationToken) |
| 2869 | { |
| 2870 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 2871 | QByteArray params = NoteStore_findNotes_prepareParams(authenticationToken, filter, offset, maxNotes); |
| 2872 | QByteArray reply = askEvernote(url_, params); |
| 2873 | return NoteStore_findNotes_readReply(reply); |
| 2874 | } |
| 2875 | |
| 2876 | AsyncResult* NoteStore::findNotesAsync(const NoteFilter& filter, qint32 offset, qint32 maxNotes, QString authenticationToken) |
| 2877 | { |
nothing calls this directly
no test coverage detected