| 4206 | } |
| 4207 | |
| 4208 | AsyncResult* NoteStore::getResourceSearchTextAsync(Guid guid, QString authenticationToken) |
| 4209 | { |
| 4210 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 4211 | QByteArray params = NoteStore_getResourceSearchText_prepareParams(authenticationToken, guid); |
| 4212 | return new AsyncResult(url_, params, NoteStore_getResourceSearchText_readReplyAsync); |
| 4213 | } |
| 4214 | |
| 4215 | QByteArray NoteStore_getNoteTagNames_prepareParams(QString authenticationToken, Guid guid) |
| 4216 | { |
nothing calls this directly
no test coverage detected