| 1722 | } |
| 1723 | |
| 1724 | AsyncResult* NoteStore::getTagAsync(Guid guid, QString authenticationToken) |
| 1725 | { |
| 1726 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 1727 | QByteArray params = NoteStore_getTag_prepareParams(authenticationToken, guid); |
| 1728 | return new AsyncResult(url_, params, NoteStore_getTag_readReplyAsync); |
| 1729 | } |
| 1730 | |
| 1731 | QByteArray NoteStore_createTag_prepareParams(QString authenticationToken, const Tag& tag) |
| 1732 | { |
nothing calls this directly
no test coverage detected