| 3606 | } |
| 3607 | |
| 3608 | AsyncResult* NoteStore::getNoteApplicationDataEntryAsync(Guid guid, QString key, QString authenticationToken) |
| 3609 | { |
| 3610 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 3611 | QByteArray params = NoteStore_getNoteApplicationDataEntry_prepareParams(authenticationToken, guid, key); |
| 3612 | return new AsyncResult(url_, params, NoteStore_getNoteApplicationDataEntry_readReplyAsync); |
| 3613 | } |
| 3614 | |
| 3615 | QByteArray NoteStore_setNoteApplicationDataEntry_prepareParams(QString authenticationToken, Guid guid, QString key, QString value) |
| 3616 | { |
nothing calls this directly
no test coverage detected