| 3966 | } |
| 3967 | |
| 3968 | AsyncResult* NoteStore::getNoteContentAsync(Guid guid, QString authenticationToken) |
| 3969 | { |
| 3970 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 3971 | QByteArray params = NoteStore_getNoteContent_prepareParams(authenticationToken, guid); |
| 3972 | return new AsyncResult(url_, params, NoteStore_getNoteContent_readReplyAsync); |
| 3973 | } |
| 3974 | |
| 3975 | QByteArray NoteStore_getNoteSearchText_prepareParams(QString authenticationToken, Guid guid, bool noteOnly, bool tokenizeForIndexing) |
| 3976 | { |
nothing calls this directly
no test coverage detected