| 3369 | } |
| 3370 | |
| 3371 | AsyncResult* NoteStore::getNoteAsync(Guid guid, bool withContent, bool withResourcesData, bool withResourcesRecognition, bool withResourcesAlternateData, QString authenticationToken) |
| 3372 | { |
| 3373 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 3374 | QByteArray params = NoteStore_getNote_prepareParams(authenticationToken, guid, withContent, withResourcesData, withResourcesRecognition, withResourcesAlternateData); |
| 3375 | return new AsyncResult(url_, params, NoteStore_getNote_readReplyAsync); |
| 3376 | } |
| 3377 | |
| 3378 | QByteArray NoteStore_getNoteApplicationData_prepareParams(QString authenticationToken, Guid guid) |
| 3379 | { |
nothing calls this directly
no test coverage detected