| 5649 | } |
| 5650 | |
| 5651 | AsyncResult* NoteStore::getResourceApplicationDataAsync(Guid guid, QString authenticationToken) |
| 5652 | { |
| 5653 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 5654 | QByteArray params = NoteStore_getResourceApplicationData_prepareParams(authenticationToken, guid); |
| 5655 | return new AsyncResult(url_, params, NoteStore_getResourceApplicationData_readReplyAsync); |
| 5656 | } |
| 5657 | |
| 5658 | QByteArray NoteStore_getResourceApplicationDataEntry_prepareParams(QString authenticationToken, Guid guid, QString key) |
| 5659 | { |
nothing calls this directly
no test coverage detected