| 1839 | } |
| 1840 | |
| 1841 | AsyncResult* NoteStore::createTagAsync(const Tag& tag, QString authenticationToken) |
| 1842 | { |
| 1843 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 1844 | QByteArray params = NoteStore_createTag_prepareParams(authenticationToken, tag); |
| 1845 | return new AsyncResult(url_, params, NoteStore_createTag_readReplyAsync); |
| 1846 | } |
| 1847 | |
| 1848 | QByteArray NoteStore_updateTag_prepareParams(QString authenticationToken, const Tag& tag) |
| 1849 | { |
nothing calls this directly
no test coverage detected