| 7675 | } |
| 7676 | |
| 7677 | AsyncResult* NoteStore::createLinkedNotebookAsync(const LinkedNotebook& linkedNotebook, QString authenticationToken) |
| 7678 | { |
| 7679 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 7680 | QByteArray params = NoteStore_createLinkedNotebook_prepareParams(authenticationToken, linkedNotebook); |
| 7681 | return new AsyncResult(url_, params, NoteStore_createLinkedNotebook_readReplyAsync); |
| 7682 | } |
| 7683 | |
| 7684 | QByteArray NoteStore_updateLinkedNotebook_prepareParams(QString authenticationToken, const LinkedNotebook& linkedNotebook) |
| 7685 | { |
nothing calls this directly
no test coverage detected